Fix project_tree for non admin users [SCI-2478]

This commit is contained in:
Oleksii Kriuchykhin 2018-06-01 16:38:49 +02:00
parent 58d8414f92
commit 8de0e282e3

View file

@ -342,8 +342,8 @@ class User < ApplicationRecord
result = team.projects.includes(active_experiments: :active_my_modules)
unless is_admin_of_team?(team)
# Only admins see all projects of the team
result = result.includes(:user_projects).where(
'visibility = 1 OR user_projects.user_id=:user_id)', user_id: id
result = result.joins(:user_projects).where(
'visibility=1 OR user_projects.user_id=:user_id', user_id: id
)
end