From c083f598b7be401bdd5969f0c5279586fa7b8a30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Tue, 26 Sep 2023 15:13:15 +0200 Subject: [PATCH] fix group id claim (#7352) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- services/graph/pkg/identity/cs3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/graph/pkg/identity/cs3.go b/services/graph/pkg/identity/cs3.go index a21ef4bbc9a..8cdb391c19d 100644 --- a/services/graph/pkg/identity/cs3.go +++ b/services/graph/pkg/identity/cs3.go @@ -169,7 +169,7 @@ func (i *CS3) GetGroup(ctx context.Context, groupID string, queryParam url.Value } res, err := gatewayClient.GetGroupByClaim(ctx, &cs3group.GetGroupByClaimRequest{ - Claim: "groupid", // FIXME add consts to reva + Claim: "group_id", // FIXME add consts to reva Value: groupID, })