17 lines
250 B
Ruby
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
|