houdini/app/jobs/export_supporters_failed_job.rb
2019-11-08 16:13:02 -06:00

7 lines
177 B
Ruby

class ExportSupportersFailedJob < ApplicationJob
queue_as :default
def perform(export)
ExportMailer.export_supporters_failed_notification(export).deliver_now
end
end