summaryrefslogtreecommitdiff
path: root/app/controllers/projects/protected_branches_controller.rb
blob: 64954ac9a42964b0fd812540d21d31f5d577dea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Projects::ProtectedBranchesController < Projects::ProtectedRefsController
  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 protected_ref_params
    params.require(:protected_branch).permit(:name,
                                             merge_access_levels_attributes: access_level_attributes,
                                             push_access_levels_attributes: access_level_attributes)
  end
end