6 lines
138 B
Ruby
6 lines
138 B
Ruby
class PayoutPendingJob < EmailJob
|
|
|
|
def perform(payout)
|
|
NonprofitMailer.pending_payout_notification(payout.id).deliver_now
|
|
end
|
|
end
|