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

15 lines
192 B
Ruby

class Notifier::Commented < Notifier
private
def title
"RE: " + super
end
def body
"#{event.creator.name}"
end
def resource
event.comment
end
end