mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
add some more info on the refresh token timeout (#6823)
This commit is contained in:
parent
0a9e8b81d4
commit
76de2c06f5
@ -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
|
### 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.
|
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.
|
||||||
|
@ -1104,6 +1104,9 @@
|
|||||||
"redirectUriLogout": {
|
"redirectUriLogout": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"refreshTokenTimeout": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
"publicUrls": {
|
"publicUrls": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
|
@ -24,5 +24,6 @@ export interface OauthConfigModel {
|
|||||||
silentLogin?: boolean;
|
silentLogin?: boolean;
|
||||||
secret?: string;
|
secret?: string;
|
||||||
redirectUriLogout?: string;
|
redirectUriLogout?: string;
|
||||||
|
refreshTokenTimeout?: Number;
|
||||||
publicUrls: string[];
|
publicUrls: string[];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user