mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 23:59:40 +02:00
8 lines
114 B
Ruby
8 lines
114 B
Ruby
|
class RevertImportJob < ApplicationJob
|
||
|
queue_as :latency_low
|
||
|
|
||
|
def perform(import)
|
||
|
import.revert
|
||
|
end
|
||
|
end
|