diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-01-20 12:21:49 +0100 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-01-22 17:02:04 +0100 |
commit | 2c3c5b35549185080296670cfe6710aa80f99944 (patch) | |
tree | 86e718db224300ca248a524f1dd061bdda56376e /app/finders | |
parent | c56326fc3ef75767abf324f614a4be46153efbb3 (diff) | |
download | gitlab-ce-2c3c5b35549185080296670cfe6710aa80f99944.tar.gz |
Don't include projects shared as group-descendants
When a project is shared with a group, it should not be included as a
descendant on the group dashboard.
Diffstat (limited to 'app/finders')
-rw-r--r-- | app/finders/group_descendants_finder.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/finders/group_descendants_finder.rb b/app/finders/group_descendants_finder.rb index 58570a580f1..c77d1fd6019 100644 --- a/app/finders/group_descendants_finder.rb +++ b/app/finders/group_descendants_finder.rb @@ -121,8 +121,10 @@ class GroupDescendantsFinder end def direct_child_projects - GroupProjectsFinder.new(group: parent_group, current_user: current_user, params: params) - .execute + GroupProjectsFinder.new(group: parent_group, + current_user: current_user, + options: { only_owned: true }, + params: params).execute end # Finds all projects nested under `parent_group` or any of its descendant |