Skip to content
Snippets Groups Projects
Commit 49590a2a authored by Marin Jankovski's avatar Marin Jankovski
Browse files

Allow issues to be viewed for authenticated user when project is public or internal.

Former-commit-id: 468c9ce4
parent ce2c1067
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -45,7 +45,11 @@ class FilteringService
current_user.send(table_name)
when 'all' then
if current_user
klass.of_projects(current_user.authorized_projects.pluck(:id))
if project && (project.public? || project.internal?)
klass.of_projects(Project.public_or_internal_only(current_user))
else
klass.of_projects(current_user.authorized_projects.pluck(:id))
end
else
klass.of_projects(Project.public_only)
end
Loading
Loading
@@ -120,4 +124,8 @@ class FilteringService
 
items
end
def project
Project.where(id: params[:project_id]).first if params[:project_id].present?
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment