Files
fizzy/app/models/event.rb
T
2024-10-16 16:41:11 -06:00

13 lines
278 B
Ruby

class Event < ApplicationRecord
THREADABLE_ACTIONS = %w[ assigned boosted created ]
include Assignments
belongs_to :creator, class_name: "User"
belongs_to :bubble
has_one :account, through: :creator
scope :threadable, -> { where action: THREADABLE_ACTIONS }
end