1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/app/jobs/enrich_transaction_batch_job.rb

8 lines
195 B
Ruby
Raw Normal View History

class EnrichTransactionBatchJob < ApplicationJob
queue_as :low_priority
def perform(account, batch_size = 100, offset = 0)
account.enrich_transaction_batch(batch_size, offset)
end
end