2013-07-16 15:19:07 -04:00
|
|
|
class Projects::BranchesController < Projects::ApplicationController
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
2013-07-17 01:26:00 -04:00
|
|
|
before_filter :authorize_code_access!
|
2014-05-22 07:39:09 -04:00
|
|
|
before_filter :authorize_push!, only: [:create, :destroy]
|
2013-07-16 15:19:07 -04:00
|
|
|
|
|
|
|
def index
|
|
|
|
@branches = Kaminari.paginate_array(@repository.branches).page(params[:page]).per(30)
|
|
|
|
end
|
|
|
|
|
2013-08-05 10:59:58 -04:00
|
|
|
def recent
|
|
|
|
@branches = @repository.recent_branches
|
|
|
|
end
|
|
|
|
|
2013-07-16 15:19:07 -04:00
|
|
|
def create
|
2014-04-01 03:33:23 -04:00
|
|
|
CreateBranchService.new.execute(project, params[:branch_name], params[:ref], current_user)
|
2013-07-16 17:09:23 -04:00
|
|
|
|
|
|
|
redirect_to project_branches_path(@project)
|
2013-07-16 15:19:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2014-05-22 07:39:09 -04:00
|
|
|
DeleteBranchService.new.execute(project, params[:id], current_user)
|
2013-07-16 15:19:07 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2013-07-16 17:09:23 -04:00
|
|
|
format.html { redirect_to project_branches_path(@project) }
|
2013-07-16 15:19:07 -04:00
|
|
|
format.js { render nothing: true }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|