Ajout de 'roles' dans les scopes par défaut

This commit is contained in:
2022-08-26 13:55:27 +02:00
parent a00a64a11e
commit 126dbf66c2
2 changed files with 13 additions and 1 deletions

View File

@ -9,6 +9,6 @@
"redirect_uris": {{ item.redirect_uris | default([]) | to_json }},
"response_types": {{ item.response_types | default(["code"]) | to_json }},
"logo_uri": {{ item.logo_uri | default("") | to_json }},
"scope": {{ item.scope | default("openid profile email") | to_json }},
"scope": {{ item.scope | default("openid profile email roles") | to_json }},
"token_endpoint_auth_method": {{ item.token_endpoint_auth_method | default("client_secret_post") | to_json }}
}