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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/protected_branches_controller.rb')
-rw-r--r--app/controllers/projects/protected_branches_controller.rb51
1 files changed, 0 insertions, 51 deletions
diff --git a/app/controllers/projects/protected_branches_controller.rb b/app/controllers/projects/protected_branches_controller.rb
deleted file mode 100644
index ac36ac6fcd3..00000000000
--- a/app/controllers/projects/protected_branches_controller.rb
+++ /dev/null
@@ -1,51 +0,0 @@
-class Projects::ProtectedBranchesController < Projects::ApplicationController
- # Authorize
- before_filter :require_non_empty_project
- before_filter :authorize_admin_project!
-
- layout "project_settings"
-
- def index
- @branches = @project.protected_branches.to_a
- @protected_branch = @project.protected_branches.new
- end
-
- def create
- @project.protected_branches.create(protected_branch_params)
- redirect_to namespace_project_protected_branches_path(@project.namespace,
- @project)
- end
-
- def update
- protected_branch = @project.protected_branches.find(params[:id])
-
- if protected_branch &&
- protected_branch.update_attributes(
- developers_can_push: params[:developers_can_push]
- )
-
- respond_to do |format|
- format.json { render json: protected_branch, status: :ok }
- end
- else
- respond_to do |format|
- format.json { render json: protected_branch.errors, status: :unprocessable_entity }
- end
- end
- end
-
- def destroy
- @project.protected_branches.find(params[:id]).destroy
-
- respond_to do |format|
- format.html { redirect_to namespace_project_protected_branches_path }
- format.js { render nothing: true }
- end
- end
-
- private
-
- def protected_branch_params
- params.require(:protected_branch).permit(:name, :developers_can_push)
- end
-end