Method: Mailboxer::Notification#mark_as_unread

Defined in:
app/models/mailboxer/notification.rb

#mark_as_unread(participant) ⇒ Object

Mark the notification as unread



144
145
146
147
# File 'app/models/mailboxer/notification.rb', line 144

def mark_as_unread(participant)
  return if participant.nil?
  receipt_for(participant).mark_as_unread
end