mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
8 lines
115 B
Ruby
8 lines
115 B
Ruby
|
class EnrichDataJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(account)
|
||
|
account.enrich_data
|
||
|
end
|
||
|
end
|