1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-07 14:35:23 +02:00
Maybe/app/jobs/sync_job.rb

8 lines
105 B
Ruby
Raw Normal View History

class SyncJob < ApplicationJob
queue_as :high_priority
def perform(sync)
sync.perform
end
end