Files
fizzy/app/models/notifier/commented.rb
T
Kevin McConnell 66d0f29d45 Notify on pop as well
And DRY up some duplication.
2025-01-13 14:21:47 +00:00

11 lines
156 B
Ruby

class Notifier::Commented < Notifier
private
def body
"commented on: #{bubble.title}"
end
def resource
event.comment
end
end