demarches-normaliennes/app/jobs/batch_operation_enqueue_all_job.rb

8 lines
155 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class BatchOperationEnqueueAllJob < ApplicationJob
def perform(batch_operation)
batch_operation.enqueue_all
end
end