Use ActiveJob to send comment mails

This commit is contained in:
Henne Vogelsang 2016-04-22 11:29:38 +02:00
parent 8392fca0dc
commit 3391d09549
4 changed files with 20 additions and 12 deletions

View file

@ -56,6 +56,6 @@ class Comment < ActiveRecord::Base
private
def send_notification
Mailbot.send_notification_email_for_comment(self).deliver_later
EventCommentMailJob.perform_later(self)
end
end