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

7 lines
103 B
Ruby

class Notifier::Created < Notifier
private
def body
"created: #{bubble.title}"
end
end