1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 23:59:40 +02:00
Maybe/app/jobs/revert_import_job.rb

8 lines
114 B
Ruby
Raw Normal View History

class RevertImportJob < ApplicationJob
queue_as :latency_low
def perform(import)
import.revert
end
end