summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fix_approval_project_rules_without_protected_branches.rb
blob: 4b283bae79d349600db9fb9dc464c325465379cb (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 update approval project rules
    # as this feature exists only in EE
    class FixApprovalProjectRulesWithoutProtectedBranches < BatchedMigrationJob
      def perform; end
    end
  end
end

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