mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3938] support for XMLHttpRequest.withCredentials flag (#4190)
* support XMLHttpRequest.withCredentials * proper defaults and json schema updates * remove outdated docs * remove empty declaration from app config * fix blob support
This commit is contained in:
committed by
Eugenio Romano
parent
08c9b6d117
commit
5887fa1052
@@ -36,7 +36,8 @@ export enum AppConfigValues {
|
||||
ALFRESCO_REPOSITORY_NAME = 'alfrescoRepositoryName',
|
||||
LOG_LEVEL = 'logLevel',
|
||||
LOGIN_ROUTE = 'loginRoute',
|
||||
DISABLECSRF = 'disableCSRF'
|
||||
DISABLECSRF = 'disableCSRF',
|
||||
AUTH_WITH_CREDENTIALS = 'auth.withCredentials'
|
||||
}
|
||||
|
||||
export enum Status {
|
||||
|
@@ -833,6 +833,24 @@
|
||||
"OAUTH"
|
||||
]
|
||||
},
|
||||
"baseShareUrl": {
|
||||
"description": "Custom url for shared links",
|
||||
"type": "string"
|
||||
},
|
||||
"locale": {
|
||||
"description": "Default application locale",
|
||||
"type": "string"
|
||||
},
|
||||
"auth": {
|
||||
"description": "Custom authentication settings",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"withCredentials": {
|
||||
"description": "Toggle XMLHttpRequest.withCredentials for @alfresco/js-api and PDF Viewer",
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"oauth2": {
|
||||
"description": "AUTH configuration parameters",
|
||||
"type": "object",
|
||||
|
Reference in New Issue
Block a user