8 lines
175 B
Ruby
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
|