summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/populate_approval_project_rules_with_security_orchestration.rb
blob: 1d0c0010551e5db91b6d6af13cbca0cee450fe6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # This class doesn't delete merge request level rules
    # as this feature exists only in EE
    class PopulateApprovalProjectRulesWithSecurityOrchestration < BatchedMigrationJob
      def perform; end
    end
  end
end

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