Files
fizzy/app/models/notification.rb
T
2025-01-21 14:37:41 +00:00

25 lines
558 B
Ruby

class Notification < ApplicationRecord
belongs_to :user
belongs_to :event
belongs_to :bubble
belongs_to :resource, polymorphic: true
scope :unread, -> { where(read_at: nil) }
scope :read, -> { where.not(read_at: nil) }
scope :ordered, -> { order(read_at: :desc, created_at: :desc) }
delegate :creator, to: :event
broadcasts_to ->(notification) { [ notification.user, :notifications ] }, inserts_by: :prepend
class << self
def read_all
update!(read_at: Time.current)
end
end
def read?
read_at.present?
end
end