Files
fizzy/app/models/notifier/mention_notifier.rb
T
Jorge Manrubia 5749ad77e5 Rename classes
2025-04-23 16:19:50 +02:00

17 lines
250 B
Ruby

class Notifier::MentionNotifier < Notifier
alias mention source
private
def recipients
if mention.self_mention?
[]
else
[ mention.mentionee ]
end
end
def creator
mention.mentioner
end
end