mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-6647] covert aca:fields to app:fields (#3838)
This commit is contained in:
@@ -20,7 +20,7 @@ In order to configure multiple search form you have to add your search configura
|
||||
| name | `string` | "" | Display title of the form |
|
||||
| order | `string` | | Visualization order in the dropdown |
|
||||
| default | `boolean` | | if the search has to be used as default search |
|
||||
| aca:fields| `string[]`| | list of aspects property to add in the query and search in the value for the given text. The property will be concatenated in AND|
|
||||
| app:fields| `string[]`| | list of aspects property to add in the query and search in the value for the given text. The property will be concatenated in AND|
|
||||
|
||||
### Search configuration properties
|
||||
|
||||
|
@@ -20,7 +20,7 @@ In this tutorial, we are going to implement the following features:
|
||||
| name | `string` | "" | Display title of the form |
|
||||
| order | `string` | | Visualization order in the dropdown |
|
||||
| default | `boolean` | | if the search has to be used as default search |
|
||||
| aca:fields| `string[]`| | list of aspects property to add in the query and search in the value for the given text. The property will be concatenated in AND|
|
||||
| app:fields| `string[]`| | list of aspects property to add in the query and search in the value for the given text. The property will be concatenated in AND|
|
||||
|
||||
### Search configuration properties
|
||||
|
||||
@@ -41,7 +41,7 @@ Update `your-app.extensions.json` file, and insert a new entry to the `features.
|
||||
"order": 200,
|
||||
"name": "APP.SEARCH.MY_CUSTOM_SEARCH",
|
||||
"default": false,
|
||||
"aca:fields": [ "cm:name", "cm:title", "cm:description", "TEXT", "TAG"],
|
||||
"app:fields": [ "cm:name", "cm:title", "cm:description", "TEXT", "TAG"],
|
||||
"filterQueries": [
|
||||
{
|
||||
"query": "+ASPECT: 'cm:person'"
|
||||
@@ -70,7 +70,7 @@ To replace the default search with your configuration set to true the default fi
|
||||
"order": 200,
|
||||
"name": "APP.SEARCH.MY_CUSTOM_SEARCH",
|
||||
"default": true,
|
||||
"aca:fields": [ "cm:name", "cm:title", "cm:description", "TEXT", "TAG"],
|
||||
"app:fields": [ "cm:name", "cm:title", "cm:description", "TEXT", "TAG"],
|
||||
"filterQueries": [
|
||||
{
|
||||
"query": "+ASPECT: 'cm:person'"
|
||||
|
Reference in New Issue
Block a user