2014-05-22 07:38:48 -04:00
|
|
|
module BranchesHelper
|
|
|
|
def can_remove_branch?(project, branch_name)
|
2017-04-03 13:59:58 -04:00
|
|
|
if ProtectedBranch.protected?(project, branch_name)
|
2014-06-02 09:18:16 -04:00
|
|
|
false
|
|
|
|
elsif branch_name == project.repository.root_ref
|
|
|
|
false
|
|
|
|
else
|
|
|
|
can?(current_user, :push_code, project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-07 12:19:21 -04:00
|
|
|
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-06-02 09:18:16 -04:00
|
|
|
def can_push_branch?(project, branch_name)
|
2016-06-20 09:38:54 -04:00
|
|
|
return false unless project.repository.branch_exists?(branch_name)
|
2015-12-08 10:42:10 -05:00
|
|
|
|
2016-07-18 04:16:56 -04:00
|
|
|
::Gitlab::UserAccess.new(current_user, project: project).can_push_to_branch?(branch_name)
|
2014-05-22 07:38:48 -04:00
|
|
|
end
|
2016-06-10 11:43:25 -04:00
|
|
|
|
|
|
|
def project_branches
|
|
|
|
options_for_select(@project.repository.branch_names, @project.default_branch)
|
|
|
|
end
|
2017-04-05 13:59:46 -04:00
|
|
|
|
|
|
|
def protected_branch?(project, branch)
|
|
|
|
ProtectedBranch.protected?(project, branch.name)
|
|
|
|
end
|
2014-05-22 07:38:48 -04:00
|
|
|
end
|