mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-31 19:19:38 +02:00
8 lines
109 B
Ruby
8 lines
109 B
Ruby
|
class AccountSyncJob < ApplicationJob
|
||
|
queue_as :default
|
||
|
|
||
|
def perform(account)
|
||
|
account.sync
|
||
|
end
|
||
|
end
|