mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-05 13:35:21 +02:00
* Allow reverting imports * Fix tests * Add currency column to all imports * Don't auto-enrich demo account
7 lines
114 B
Ruby
7 lines
114 B
Ruby
class RevertImportJob < ApplicationJob
|
|
queue_as :latency_low
|
|
|
|
def perform(import)
|
|
import.revert
|
|
end
|
|
end
|