Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-08-02 06:08:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-08-02 06:08:52 +0300
commit123582839259a70910bd0e9109e57ed65d71cb23 (patch)
treeda3c33793182af05f67bf27e071168df94711376 /app/services/groups
parenta0e1fa9aada57f1fde912890e96f867ac540ab03 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/groups')
-rw-r--r--app/services/groups/participants_service.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/app/services/groups/participants_service.rb b/app/services/groups/participants_service.rb
index e939d27d464..a2238264295 100644
--- a/app/services/groups/participants_service.rb
+++ b/app/services/groups/participants_service.rb
@@ -13,7 +13,7 @@ module Groups
participants_in_noteable +
all_members +
groups +
- group_members
+ group_hierarchy_users
render_participants_as_hash(participants.uniq)
end
@@ -26,12 +26,10 @@ module Groups
[{ username: "all", name: "All Group Members", count: group.users_count }]
end
- def group_members
+ def group_hierarchy_users
return [] unless group
- sorted(
- group.direct_and_indirect_users(share_with_groups: group.member?(current_user))
- )
+ sorted(Autocomplete::GroupUsersFinder.new(group: group).execute)
end
end
end