24 lines
617 B
Ruby
24 lines
617 B
Ruby
class Notification < ActiveRecord::Base
|
|
belongs_to :user, counter_cache: true
|
|
belongs_to :notifiable, polymorphic: true
|
|
|
|
scope :unread, -> { all }
|
|
scope :recent, -> { order(id: :desc) }
|
|
scope :for_render, -> { includes(:notifiable) }
|
|
|
|
def timestamp
|
|
notifiable.created_at
|
|
end
|
|
|
|
def mark_as_read
|
|
self.destroy
|
|
end
|
|
|
|
def self.add(user_id, notifiable)
|
|
if notification = Notification.find_by(user_id: user_id, notifiable: notifiable)
|
|
Notification.increment_counter(:counter, notification.id)
|
|
else
|
|
Notification.create!(user_id: user_id, notifiable: notifiable)
|
|
end
|
|
end
|
|
end |