2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-11-19 06:03:59 +01:00
|
|
|
class BatchOperationEnqueueAllJob < ApplicationJob
|
2024-09-24 11:24:02 +02:00
|
|
|
queue_as :mailers # hotfix
|
2024-09-24 09:31:07 +02:00
|
|
|
|
2022-11-19 06:03:59 +01:00
|
|
|
def perform(batch_operation)
|
|
|
|
batch_operation.enqueue_all
|
|
|
|
end
|
|
|
|
end
|