Files
fizzy/app/models/event.rb
T
2024-10-11 20:14:09 -05:00

11 lines
239 B
Ruby

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