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/branches_controller.rb')
-rw-r--r--app/controllers/projects/branches_controller.rb46
1 files changed, 0 insertions, 46 deletions
diff --git a/app/controllers/projects/branches_controller.rb b/app/controllers/projects/branches_controller.rb
deleted file mode 100644
index f049e96e61d..00000000000
--- a/app/controllers/projects/branches_controller.rb
+++ /dev/null
@@ -1,46 +0,0 @@
-class Projects::BranchesController < Projects::ApplicationController
- include ActionView::Helpers::SanitizeHelper
- # Authorize
- before_filter :require_non_empty_project
- before_filter :authorize_download_code!
- before_filter :authorize_push_code!, only: [:create, :destroy]
-
- def index
- @sort = params[:sort] || 'name'
- @branches = @repository.branches_sorted_by(@sort)
- @branches = Kaminari.paginate_array(@branches).page(params[:page]).per(PER_PAGE)
- end
-
- def recent
- @branches = @repository.recent_branches
- end
-
- def create
- branch_name = sanitize(strip_tags(params[:branch_name]))
- ref = sanitize(strip_tags(params[:ref]))
- result = CreateBranchService.new(project, current_user).
- execute(branch_name, ref)
-
- if result[:status] == :success
- @branch = result[:branch]
- redirect_to namespace_project_tree_path(@project.namespace, @project,
- @branch.name)
- else
- @error = result[:message]
- render action: 'new'
- end
- end
-
- def destroy
- DeleteBranchService.new(project, current_user).execute(params[:id])
- @branch_name = params[:id]
-
- respond_to do |format|
- format.html do
- redirect_to namespace_project_branches_path(@project.namespace,
- @project)
- end
- format.js
- end
- end
-end