Files
sure/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

8 lines
105 B
Ruby

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