3e67da7d0e
So that changing the set of events does not result in not being able to find a generated highlight summary
7 lines
232 B
Ruby
7 lines
232 B
Ruby
# This acts as a join table between users and period_highlights so that we can reuse the
|
|
# same highlights for different users.
|
|
class User::WeeklyHighlights < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :period_highlights
|
|
end
|