8 lines
186 B
Ruby
8 lines
186 B
Ruby
|
class ExportSupporterNotesFailedJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(export)
|
||
|
ExportMailer.export_supporter_notes_failed_notification(export).deliver_now
|
||
|
end
|
||
|
end
|