8 lines
183 B
Ruby
8 lines
183 B
Ruby
|
class ExportSupportersCompletedJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(export)
|
||
|
ExportMailer.export_supporters_completed_notification(export).deliver_now
|
||
|
end
|
||
|
end
|