diaspora/app/workers/mail/report_worker.rb
realtin 15b186518c add moderators to report email recievers
and refactor coding style according to pull request comments

(#5324)
2015-09-07 12:31:25 +02:00

11 lines
213 B
Ruby

module Workers
module Mail
class ReportWorker < Base
sidekiq_options queue: :mail
def perform(type, id)
ReportMailer.new_report(type, id).each(&:deliver_now)
end
end
end
end