strapi/examples/getstarted/api/menu/models/Menu.settings.json
soupette 4b207e6cc0 Add D&P key to all models. Change UI modal divider
Signed-off-by: soupette <cyril.lpz@gmail.com>
2020-09-22 17:39:10 +02:00

28 lines
466 B
JSON
Executable File

{
"kind": "collectionType",
"collectionName": "menus",
"info": {
"name": "menu",
"description": ""
},
"options": {
"draftAndPublish": false,
"increments": true,
"timestamps": true,
"comment": ""
},
"attributes": {
"description": {
"type": "text"
},
"menusections": {
"via": "menu",
"collection": "menusection"
},
"restaurant": {
"via": "menu",
"model": "restaurant"
}
}
}