Files
fizzy/app/models/notifier/created.rb
T
2025-01-13 20:46:51 -06:00

7 lines
109 B
Ruby

class Notifier::Created < Notifier
private
def body
"Added by #{event.creator.name}"
end
end