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

8 lines
175 B
Ruby

class Notification < ApplicationRecord
belongs_to :user
belongs_to :bubble
scope :unread, -> { where.not(:read) }
scope :ordered, -> { order(created_at: :desc) }
end