7 lines
155 B
Ruby
7 lines
155 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BatchOperationEnqueueAllJob < ApplicationJob
|
|
def perform(batch_operation)
|
|
batch_operation.enqueue_all
|
|
end
|
|
end
|