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