demarches-normaliennes/app/jobs/batch_operation_enqueue_all_job.rb
2024-09-24 11:24:02 +02:00

9 lines
185 B
Ruby

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