houdini/app/jobs/refund_notification_job.rb
Eric Schultz e3a10f0980 Fix typo
2019-11-08 16:13:02 -06:00

8 lines
218 B
Ruby

class RefundNotificationJob < ApplicationJob
queue_as :default
def perform(refund)
RefundNotificationDonorEmailJob.perform_later(refund)
RefundNotificationNonprofitEmailJob.perform_later(refund)
end
end