From bb1991f3caa292eb8a218d6c51f5f4f44cb0a190 Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Fri, 1 Aug 2025 08:55:34 -0700 Subject: [PATCH] Add OIDC group claim name to OpenID request (#490) This fixes Kanidm compatibility. --- internal/auth/oauth/openid.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/auth/oauth/openid.go b/internal/auth/oauth/openid.go index 8731ce3..ffa17f2 100644 --- a/internal/auth/oauth/openid.go +++ b/internal/auth/oauth/openid.go @@ -25,6 +25,7 @@ func (p *OIDCProvider) RegisterProvider() error { "openid", "email", "profile", + config.C.OIDCGroupClaimName, ) if err != nil {