providers/oauth2: fix include_claims_in_id_token not being shown in form/API
This commit is contained in:
parent
9848c5f3eb
commit
5b18e28753
|
@ -21,6 +21,7 @@ class OAuth2ProviderSerializer(ModelSerializer, MetaNameSerializer):
|
||||||
"client_secret",
|
"client_secret",
|
||||||
"token_validity",
|
"token_validity",
|
||||||
"response_type",
|
"response_type",
|
||||||
|
"include_claims_in_id_token",
|
||||||
"jwt_alg",
|
"jwt_alg",
|
||||||
"rsa_key",
|
"rsa_key",
|
||||||
"redirect_uris",
|
"redirect_uris",
|
||||||
|
|
|
@ -55,6 +55,7 @@ class OAuth2ProviderForm(forms.ModelForm):
|
||||||
"client_secret",
|
"client_secret",
|
||||||
"response_type",
|
"response_type",
|
||||||
"token_validity",
|
"token_validity",
|
||||||
|
"include_claims_in_id_token",
|
||||||
"jwt_alg",
|
"jwt_alg",
|
||||||
"rsa_key",
|
"rsa_key",
|
||||||
"redirect_uris",
|
"redirect_uris",
|
||||||
|
|
|
@ -7847,6 +7847,11 @@ definitions:
|
||||||
- code token
|
- code token
|
||||||
- code id_token
|
- code id_token
|
||||||
- code id_token token
|
- code id_token token
|
||||||
|
include_claims_in_id_token:
|
||||||
|
title: Include claims in id_token
|
||||||
|
description: Include User claims from scopes in the id_token, for applications
|
||||||
|
that don't access the userinfo endpoint.
|
||||||
|
type: boolean
|
||||||
jwt_alg:
|
jwt_alg:
|
||||||
title: JWT Algorithm
|
title: JWT Algorithm
|
||||||
description: Algorithm used to sign the JWT Token
|
description: Algorithm used to sign the JWT Token
|
||||||
|
|
Reference in New Issue