-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(actualites): ajout des configs (#304)
- Loading branch information
1 parent
1c4c63d
commit 4a624ff
Showing
1 changed file
with
136 additions
and
0 deletions.
There are no files selected for viewing
136 changes: 136 additions & 0 deletions
136
...c/files/core-store.plugin_content_manager_configuration_components##cartes.actualite.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
{ | ||
"key": "plugin_content_manager_configuration_components::cartes.actualite", | ||
"value": { | ||
"settings": { | ||
"bulkable": true, | ||
"filterable": true, | ||
"searchable": true, | ||
"pageSize": 10, | ||
"mainField": "titre", | ||
"defaultSortBy": "titre", | ||
"defaultSortOrder": "ASC" | ||
}, | ||
"metadatas": { | ||
"id": { | ||
"edit": {}, | ||
"list": { | ||
"label": "id", | ||
"searchable": false, | ||
"sortable": false | ||
} | ||
}, | ||
"titre": { | ||
"edit": { | ||
"label": "titre", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "titre", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"contenu": { | ||
"edit": { | ||
"label": "contenu", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "contenu", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"banniere": { | ||
"edit": { | ||
"label": "banniere", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "banniere", | ||
"searchable": false, | ||
"sortable": false | ||
} | ||
}, | ||
"url": { | ||
"edit": { | ||
"label": "url", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true | ||
}, | ||
"list": { | ||
"label": "url", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
}, | ||
"article": { | ||
"edit": { | ||
"label": "article", | ||
"description": "", | ||
"placeholder": "", | ||
"visible": true, | ||
"editable": true, | ||
"mainField": "titre" | ||
}, | ||
"list": { | ||
"label": "article", | ||
"searchable": true, | ||
"sortable": true | ||
} | ||
} | ||
}, | ||
"layouts": { | ||
"list": [ | ||
"id", | ||
"titre", | ||
"contenu", | ||
"banniere" | ||
], | ||
"edit": [ | ||
[ | ||
{ | ||
"name": "titre", | ||
"size": 6 | ||
}, | ||
{ | ||
"name": "contenu", | ||
"size": 6 | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "banniere", | ||
"size": 6 | ||
}, | ||
{ | ||
"name": "url", | ||
"size": 6 | ||
} | ||
], | ||
[ | ||
{ | ||
"name": "article", | ||
"size": 6 | ||
} | ||
] | ||
] | ||
}, | ||
"uid": "cartes.actualite", | ||
"isComponent": true | ||
}, | ||
"type": "object", | ||
"environment": null, | ||
"tag": null | ||
} |