9 lines
164 B
Ruby
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
|