7 lines
182 B
Ruby
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
|