9 lines
254 B
Ruby
9 lines
254 B
Ruby
|
class DirectDebitCreateJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(donation_id, locale)
|
||
|
DirectDebitCreateNotifyDonorJob.perform_later donation_id, locale
|
||
|
DirectDebitCreateNotifyNonprofitJob.perform_later donation_id, locale
|
||
|
end
|
||
|
end
|