Files
fizzy/app/models/notifier/comment_event_notifier.rb
T

13 lines
240 B
Ruby

class Notifier::CommentEventNotifier < Notifier
delegate :creator, to: :source
private
def recipients
card.watchers.without(creator, *source.eventable.mentionees)
end
def card
source.eventable.card
end
end