Files
fizzy/app/models/pop.rb
T
2025-04-04 10:59:53 +02:00

9 lines
164 B
Ruby

class Pop < ApplicationRecord
belongs_to :bubble, touch: true
belongs_to :user, optional: true
def reason
super || Pop::Reason::FALLBACK_LABEL
end
end