houdini/app/jobs/export_payments_failed_job.rb

8 lines
173 B
Ruby
Raw Normal View History

2019-11-07 13:08:26 -06:00
class ExportPaymentsFailedJob < ApplicationJob
queue_as :default
def perform(export)
ExportMailer.export_payments_failed_notification(export).deliver_now
end
end