6 lines
114 B
Ruby
6 lines
114 B
Ruby
class SupportersExportCreateJob < EmailJob
|
|
|
|
def perform(*args)
|
|
ExportSupporters.run_export(*args)
|
|
end
|
|
end
|