Files
fizzy/app/models/notifier/events/published.rb
T
2025-04-22 11:26:56 +02:00

7 lines
182 B
Ruby

class Notifier::Events::Published < Notifier::Events::Base
private
def recipients
card.watchers_and_subscribers(include_only_watching: true).without(creator)
end
end