Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sync_scan_result_policies.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b68e4312f3103c8730ef95f74cc77fd2108e9f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Background migration to sync scan result policies from YAML to DB table by kicking off sync Sidekiq jobs
    class SyncScanResultPolicies < BatchedMigrationJob
      feature_category :security_policy_management

      def perform; end
    end
  end
end

Gitlab::BackgroundMigration::SyncScanResultPolicies.prepend_mod