Files
fizzy/app/models/notifier/published.rb
T
Kevin McConnell bc5e32e737 Only "published" notifies collection subscribers
The other notifications are only sent to the watchers of the bubble.
2025-03-18 17:46:57 +00:00

7 lines
133 B
Ruby

class Notifier::Published < Notifier
private
def recipients
bubble.watchers_and_subscribers.without(creator)
end
end