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

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

module Gitlab
  module BackgroundMigration
    # This class doesn't delete approval rules
    # as this feature exists only in EE
    class DeleteApprovalRulesWithVulnerability < BatchedMigrationJob
      feature_category :database

      def perform
      end
    end
  end
end

# rubocop:disable Layout/LineLength
Gitlab::BackgroundMigration::DeleteApprovalRulesWithVulnerability.prepend_mod_with('Gitlab::BackgroundMigration::DeleteApprovalRulesWithVulnerability')
# rubocop:enable Layout/LineLength