Skip to content

Commit

Permalink
proper defaults and json schema updates
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika committed Jan 24, 2019
1 parent 4c5588b commit 2435e46
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion demo-shell/src/app.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"authType" : "BASIC",
"locale" : "en",
"auth": {
"withCredentials": true
"withCredentials": false
},
"oauth2": {
"host": "{protocol}//{hostname}{:port}/auth/realms/alfresco",
Expand Down
18 changes: 18 additions & 0 deletions lib/core/app-config/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 2435e46

Please sign in to comment.