Files
fizzy/app/models/notifier/commented.rb
T
2025-01-13 14:21:47 +00:00

11 lines
181 B
Ruby

class Notifier::Commented < Notifier
private
def body
"commented on: #{bubble.title}"
end
def recipients
bubble.bucket.users.without(creator)
end
end