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

fix_approval_project_rules_without_protected_branches.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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