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