mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-05 21:45:23 +02:00
7 lines
120 B
Ruby
7 lines
120 B
Ruby
class EnrichDataJob < ApplicationJob
|
|
queue_as :latency_high
|
|
|
|
def perform(account)
|
|
account.enrich_data
|
|
end
|
|
end
|