8 lines
115 B
Ruby
8 lines
115 B
Ruby
|
class Notification < ActiveRecord::Base
|
||
|
belongs_to :user
|
||
|
|
||
|
def read!
|
||
|
update_attributes read: true
|
||
|
end
|
||
|
end
|