mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-05 02:20:28 -05:00
Merge pull request #10701 from owncloud/graph-skip-fetching-members
graph skip fetching members
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
Bugfix: Skip fetching members
|
||||
|
||||
We now skip fetching group members when they are not needed.
|
||||
|
||||
https://github.com/owncloud/ocis/pull/10701
|
||||
@@ -149,7 +149,8 @@ func (cache IdentityCache) GetGroup(ctx context.Context, groupID string) (libreg
|
||||
OpaqueId: groupID,
|
||||
}
|
||||
req := cs3Group.GetGroupRequest{
|
||||
GroupId: cs3GroupID,
|
||||
GroupId: cs3GroupID,
|
||||
SkipFetchingMembers: true,
|
||||
}
|
||||
res, err := gatewayClient.GetGroup(ctx, &req)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user