osem-fcy/app/jobs/event_comment_mail_job.rb
2016-04-22 11:31:19 +02:00

11 lines
278 B
Ruby

class EventCommentMailJob < ActiveJob::Base
queue_as :default
def perform(comment)
conference = comment.commentable.program.conference
User.comment_notifiable(conference).each do |user|
Mailbot.event_comment_mail(comment, user).deliver_now
end
end
end