summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/delete_approval_rules_with_vulnerability.rb
blob: 739197898d905138734cadf65763a1c763dd7f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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
      def perform
      end
    end
  end
end

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