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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View File

@ -359,6 +359,10 @@ To enable public accessible urls, that don't need authentication, these must be
}
```
#### Oauth2 Properties
You can find all the oauth2 configurations in the [JS-API oauth2 properties documentation](https://github.com/Alfresco/alfresco-js-api#login-with-oauth2-alfresco-authorization-server)
### Kerberos
The configuration for Kerberos authentication will allow users to access Alfresco products by entering their credentials only once when first logging into their Windows environment.

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[];
}