7 lines
194 B
Ruby
7 lines
194 B
Ruby
class ExportRecurringDonationsFailedJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(export)
|
|
ExportMailer.export_recurring_donations_failed_notification(export).deliver_now
|
|
end
|
|
end
|