strapi/examples/getstarted/api/menu/models/Menu.settings.json
HichamELBSI 342e0a9a86 Fix PR review 2
Signed-off-by: HichamELBSI <elabbassih@gmail.com>
2020-07-08 11:11:22 +02:00

27 lines
436 B
JSON
Executable File

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