8 lines
201 B
Ruby
8 lines
201 B
Ruby
|
class ExportRecurringDonationsCompletedJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(export)
|
||
|
ExportMailer.export_recurring_donations_completed_notification(@export).deliver_now
|
||
|
end
|
||
|
end
|