add some more info on the refresh token timeout (#6823)

This commit is contained in:
Eugenio Romano
2021-03-22 09:22:42 +00:00
committed by GitHub
parent 0a9e8b81d4
commit 76de2c06f5
3 changed files with 8 additions and 0 deletions

View File

@@ -1104,6 +1104,9 @@
"redirectUriLogout": {
"type": "string"
},
"refreshTokenTimeout": {
"type": "number"
},
"publicUrls": {
"type": "array",
"items": {

View File

@@ -24,5 +24,6 @@ export interface OauthConfigModel {
silentLogin?: boolean;
secret?: string;
redirectUriLogout?: string;
refreshTokenTimeout?: Number;
publicUrls: string[];
}