Method: Notification#send_notification
- Defined in:
- lib/app/models/notification.rb
#send_notification ⇒ Object
Send the notification
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/app/models/notification.rb', line 115 def send_notification if state.eql? STATE_NEW self.state = STATE_SUBMITTED else self.retries = 0 self.state = STATE_RESUBMITTED self. = 'Retrying' end begin if save! rescue StandardError => error finish_processing error. end end |