Initial commit

This commit is contained in:
Yaser
2026-08-13 19:50:53 +03:30
commit 38084458fe
879 changed files with 95198 additions and 0 deletions

16
app/jobs/cron/aml.rb Normal file
View File

@@ -0,0 +1,16 @@
module Jobs
module Cron
class AML
def self.process
Deposit.aml_processing.each do |d|
d.process_collect! if d.aml_check!
end
Beneficiary.aml_processing.each do |b|
b.enable! if b.aml_check!
end
sleep 60
end
end
end
end