reduce duplication and code improvements (#1707)

* reduce code duplication

* reduce duplication, fix license headers

* simplify code

* typings fixes

* update tests

* minor fixes

* markdown fixes

* revert changes
This commit is contained in:
Denys Vuika
2020-12-11 15:47:17 +00:00
committed by GitHub
parent b71e1530d1
commit 7a5350a06d
64 changed files with 482 additions and 744 deletions

View File

@@ -21,8 +21,7 @@ Content Application が起動したら、Alfresco Content Services サーバの
```json
{
"ecmHost": "http://{hostname}{:port}",
...
"ecmHost": "http://{hostname}{:port}"
}
```
@@ -41,8 +40,7 @@ ACS リポジトリの `localhost:4200/alfresco` のプロキシサーバです
```json
{
"ecmHost": "http://localhost:4200",
...
"ecmHost": "http://localhost:4200"
}
```
@@ -66,7 +64,6 @@ ACS リポジトリの `localhost:4200/alfresco` のプロキシサーバです
```json
{
...,
"application": {
"name": "Alfresco Example Content Application"
}
@@ -86,7 +83,6 @@ Alfresco コンテンツアプリケーションの左上隅に表示される
```json
{
...,
"application": {
"logo": "/assets/images/alfresco-logo-white.svg"
}
@@ -99,7 +95,6 @@ Alfresco コンテンツアプリケーションの左上隅に表示される
```json
{
...,
"headerColor": "#ffffff"
}
```
@@ -112,7 +107,6 @@ Alfresco コンテンツアプリケーションの左上隅に表示される
```json
{
...,
"files": {
"excluded": [
".DS_Store",
@@ -120,8 +114,7 @@ Alfresco コンテンツアプリケーションの左上隅に表示される
"thumbs.db",
".git"
]
},
...
}
}
```
@@ -133,15 +126,13 @@ Alfresco コンテンツアプリケーションの左上隅に表示される
```json
{
...,
"pagination": {
"supportedPageSizes": [
25,
50,
100
]
},
...
}
}
```