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

branch_rules_controller.rb « settings « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68ef7f49cc32965356987142a8fee9a739dd0ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Projects
  module Settings
    class BranchRulesController < Projects::ApplicationController
      before_action :authorize_admin_project!

      feature_category :source_code_management

      def index; end
    end
  end
end