houdini/app/jobs/refund_notification_job.rb
2019-11-08 16:13:03 -06:00

7 lines
192 B
Ruby

class RefundNotificationJob < EmailJob
def perform(refund)
RefundNotificationDonorEmailJob.perform_later(refund)
RefundNotificationNonprofitEmailJob.perform_later(refund)
end
end