9 lines
172 B
Ruby
9 lines
172 B
Ruby
class Pop < ApplicationRecord
|
|
belongs_to :bubble, touch: true
|
|
belongs_to :user, optional: true
|
|
|
|
def reason
|
|
super || Account::PopReasons::FALLBACK_LABEL
|
|
end
|
|
end
|