houdini/app/jobs/refund_notification_job.rb

9 lines
218 B
Ruby
Raw Normal View History

2019-11-07 18:53:06 +00:00
class RefundNotificationJob < ApplicationJob
queue_as :default
def perform(refund)
2019-11-07 20:33:51 +00:00
RefundNotificationDonorEmailJob.perform_later(refund)
2019-11-07 20:33:01 +00:00
RefundNotificationNonprofitEmailJob.perform_later(refund)
2019-11-07 18:53:06 +00:00
end
end