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

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

module Gitlab
  module BackgroundMigration
    class RemoveDuplicatedCsFindingsWithoutVulnerabilityId
      def perform(start_id, stop_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::RemoveDuplicatedCsFindingsWithoutVulnerabilityId.prepend_if_ee('EE::Gitlab::BackgroundMigration::RemoveDuplicatedCsFindingsWithoutVulnerabilityId')