debian-mirror-gitlab/app/helpers/branches_helper.rb

33 lines
846 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module BranchesHelper
def can_remove_branch?(project, branch_name)
if project.protected_branch? branch_name
false
elsif branch_name == project.repository.root_ref
false
else
can?(current_user, :push_code, project)
end
end
2016-08-24 12:49:21 +05:30
def filter_branches_path(options = {})
exist_opts = {
search: params[:search],
sort: params[:sort]
}
options = exist_opts.merge(options)
namespace_project_branches_path(@project.namespace, @project, @id, options)
end
2014-09-02 18:07:02 +05:30
def can_push_branch?(project, branch_name)
2016-06-22 15:30:34 +05:30
return false unless project.repository.branch_exists?(branch_name)
2015-12-23 02:04:40 +05:30
2016-08-24 12:49:21 +05:30
::Gitlab::UserAccess.new(current_user, project: project).can_push_to_branch?(branch_name)
2014-09-02 18:07:02 +05:30
end
def project_branches
options_for_select(@project.repository.branch_names, @project.default_branch)
end
2014-09-02 18:07:02 +05:30
end