1 2 3 4 5 6 7
class ReferentialCloningWorker include Sidekiq::Worker def perform(id) ReferentialCloning.find(id).clone_with_status! end end