houdini/app/jobs/refund_notification_job.rb

9 lines
218 B
Ruby
Raw Normal View History

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