1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-06 22:15:20 +02:00
Maybe/app/jobs/sync_job.rb
Zach Gollwitzer 8648f11413
Sync hierarchy updates (#2087)
* Add parent sync orchestration

* Pass sync object to dependents
2025-04-11 12:13:46 -04:00

7 lines
105 B
Ruby

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