8 lines
140 B
Ruby
8 lines
140 B
Ruby
|
class SupportersExportCreateJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(*args)
|
||
|
ExportSupporters.run_export(*args)
|
||
|
end
|
||
|
end
|