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

protected_branches_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baa4607dcb63e791937fe43ec813f8844be68c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

class Projects::ProtectedBranchesController < Projects::ProtectedRefsController
  def show
    super

    render 'protected_branches/show'
  end

  protected

  def project_refs
    @project.repository.branches
  end

  def service_namespace
    ::ProtectedBranches
  end

  def load_protected_ref
    @protected_ref = @project.protected_branches.find(params[:id])
  end

  def access_levels
    [:merge_access_levels, :push_access_levels]
  end

  def protected_ref_params(*attrs)
    attrs = ([:name,
              :allow_force_push,
              merge_access_levels_attributes: access_level_attributes,
              push_access_levels_attributes: access_level_attributes] + attrs).uniq

    params.require(:protected_branch).permit(attrs)
  end
end

Projects::ProtectedBranchesController.prepend_mod_with('Projects::ProtectedBranchesController')