gitlab-org--gitlab-foss/app/workers/propagate_integration_worke...

16 lines
315 B
Ruby

# frozen_string_literal: true
class PropagateIntegrationWorker
include ApplicationWorker
sidekiq_options retry: 3
feature_category :integrations
idempotent!
loggable_arguments 1
def perform(integration_id)
Admin::PropagateIntegrationService.propagate(Integration.find(integration_id))
end
end