Sha256: b75c21b5b9c12836a45b4086b3ee8dfc5b4474ca781be44454d5eb2b18db6b29
Contents?: true
Size: 226 Bytes
Versions: 1
Compression:
Stored size: 226 Bytes
Contents
module BloomRemit module Txns class PayoutJob include Sidekiq::Worker sidekiq_options retry: false def perform(txn_id) txn = Txn.find(txn_id) Payout.(txn) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bloom_remit-0.0.1 | app/jobs/bloom_remit/txns/payout_job.rb |