Files
fizzy/app/models/user/timelined.rb
T
2025-11-05 13:31:54 +01:00

12 lines
232 B
Ruby

module User::Timelined
extend ActiveSupport::Concern
included do
has_many :accessible_events, through: :boards, source: :events
end
def timeline_for(day, filter:)
User::DayTimeline.new(self, day, filter)
end
end