providers/oauth2: add missing token_validity field to Forms and API
This commit is contained in:
@ -18,6 +18,7 @@ class OAuth2ProviderSerializer(ModelSerializer):
|
||||
"client_type",
|
||||
"client_id",
|
||||
"client_secret",
|
||||
"token_validity",
|
||||
"response_type",
|
||||
"jwt_alg",
|
||||
"rsa_key",
|
||||
|
||||
@ -38,6 +38,7 @@ class OAuth2ProviderForm(forms.ModelForm):
|
||||
"client_id",
|
||||
"client_secret",
|
||||
"response_type",
|
||||
"token_validity",
|
||||
"jwt_alg",
|
||||
"rsa_key",
|
||||
"redirect_uris",
|
||||
@ -46,6 +47,7 @@ class OAuth2ProviderForm(forms.ModelForm):
|
||||
]
|
||||
widgets = {
|
||||
"name": forms.TextInput(),
|
||||
"token_validity": forms.TextInput(),
|
||||
}
|
||||
labels = {"property_mappings": _("Scopes")}
|
||||
help_texts = {
|
||||
|
||||
Reference in New Issue
Block a user