Do not filter out issues and merge requests related to user right away.
This commit is contained in:
parent
5e017a4566
commit
d3bdd3ba67
1 changed files with 5 additions and 1 deletions
|
@ -48,7 +48,7 @@ class IssuableFinder
|
||||||
else
|
else
|
||||||
[]
|
[]
|
||||||
end
|
end
|
||||||
elsif current_user && params[:authorized_only].presence
|
elsif current_user && params[:authorized_only].presence && !current_user_related?
|
||||||
klass.of_projects(current_user.authorized_projects).references(:project)
|
klass.of_projects(current_user.authorized_projects).references(:project)
|
||||||
else
|
else
|
||||||
klass.of_projects(ProjectsFinder.new.execute(current_user)).references(:project)
|
klass.of_projects(ProjectsFinder.new.execute(current_user)).references(:project)
|
||||||
|
@ -142,4 +142,8 @@ class IssuableFinder
|
||||||
def project
|
def project
|
||||||
Project.where(id: params[:project_id]).first if params[:project_id].present?
|
Project.where(id: params[:project_id]).first if params[:project_id].present?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def current_user_related?
|
||||||
|
params[:scope] == 'created-by-me' || params[:scope] == 'authored' || params[:scope] == 'assigned-to-me'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue