houdini/app/jobs/export_supporter_notes_failed_job.rb

8 lines
186 B
Ruby
Raw Normal View History

2019-11-07 19:20:56 +00:00
class ExportSupporterNotesFailedJob < ApplicationJob
queue_as :default
def perform(export)
ExportMailer.export_supporter_notes_failed_notification(export).deliver_now
end
end