Class: Wupee::Notification

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/wupee/notification.rb

Instance Method Summary collapse

Instance Method Details

#mark_as_readObject



12
13
14
# File 'app/models/wupee/notification.rb', line 12

def mark_as_read
  update_columns(is_read: true)
end

#mark_as_sentObject



16
17
18
# File 'app/models/wupee/notification.rb', line 16

def mark_as_sent
  update_columns(is_sent: true)
end