Fix namespace api autocomplete
This commit is contained in:
parent
105f5ba3c9
commit
439d03bbed
2 changed files with 16 additions and 7 deletions
|
@ -5,13 +5,18 @@ module Gitlab
|
|||
end
|
||||
|
||||
def user_project
|
||||
if @project ||= current_user.projects.find_by_id(params[:id]) ||
|
||||
current_user.projects.find_by_path(params[:id])
|
||||
else
|
||||
not_found!
|
||||
end
|
||||
@project ||= find_project
|
||||
@project || not_found!
|
||||
end
|
||||
|
||||
@project
|
||||
def find_project
|
||||
project = Project.find_by_id(params[:id]) || Project.find_with_namespace(params[:id])
|
||||
|
||||
if project && can?(current_user, :read_project, project)
|
||||
project
|
||||
else
|
||||
nil
|
||||
end
|
||||
end
|
||||
|
||||
def paginate(object)
|
||||
|
@ -32,6 +37,10 @@ module Gitlab
|
|||
end
|
||||
end
|
||||
|
||||
def can?(object, action, subject)
|
||||
abilities.allowed?(object, action, subject)
|
||||
end
|
||||
|
||||
def attributes_for_keys(keys)
|
||||
attrs = {}
|
||||
keys.each do |key|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue