Add 'groups' to id_token and scopes for authelia OIDC

I tried setting up OIDC with the role mapping and got stuck for a bit because the docs don't setup groups to be included.
This commit is contained in:
Taylor Southwick 2026-01-07 19:55:50 -08:00 committed by GitHub
parent 5e91499026
commit 6aeb3ddc72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,6 +33,7 @@ claims_policies:
[
"email",
"email_verified",
"groups",
"alt_emails",
"preferred_username",
"name",
@ -74,6 +75,7 @@ This entry should look like this:
- "openid"
- "email"
- "profile"
- "groups"
userinfo_signed_response_alg: "none"
token_endpoint_auth_method: "client_secret_basic"
```