1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 21:45:23 +02:00
Maybe/app/jobs/enrich_data_job.rb
2025-01-24 13:39:08 -05:00

7 lines
120 B
Ruby

class EnrichDataJob < ApplicationJob
queue_as :latency_high
def perform(account)
account.enrich_data
end
end