summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/populate_approval_merge_request_rules_with_security_orchestration.rb
blob: 2257dc016be0c3885af9b547f318e9d9d2dbbeac (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 PopulateApprovalMergeRequestRulesWithSecurityOrchestration < BatchedMigrationJob
      def perform; end
    end
  end
end

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