Files
fizzy/app/models/notifier/published.rb
T
2025-04-09 14:50:58 +02:00

7 lines
160 B
Ruby

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