Prevent duplicate notifications for the same work package

pull/3374/head
Alexander Bach 9 years ago
parent b9be211f35
commit 564273cded
  1. 11
      app/models/watcher_notification_mailer.rb

@ -30,8 +30,19 @@
class WatcherNotificationMailer
class << self
def handle_watcher(watcher_id, watcher_setter_id)
unless other_jobs_queued?(Watcher.find(watcher_id).watchable)
job = DeliverWatcherNotificationJob.new(watcher_id, watcher_setter_id)
Delayed::Job.enqueue job
end
end
private
# HACK: TODO this needs generalization as well as performance improvements
# We need to make sure no work package created or updated job is queued to avoid sending two mails
# in short succession.
def other_jobs_queued?(work_package)
Delayed::Job.where('handler LIKE ?', "%journal_id: #{work_package.journals.last.id}%").exists?
end
end
end

Loading…
Cancel
Save