strapi/examples/getstarted/api/menu/models/Menu.settings.json
Alexandre Bodin 63b503f676 Wip
2021-07-08 21:53:30 +02:00

30 lines
587 B
JSON
Executable File

{
"kind": "collectionType",
"collectionName": "menus",
"info": {
"name": "menu",
"description": ""
},
"options": {
"draftAndPublish": false,
"comment": ""
},
"attributes": {
"description": {
"type": "text"
},
"menusections": {
"type": "relation",
"relation": "oneToMany",
"target": "application::menusection.menusection",
"mappedBy": "menu"
},
"restaurant": {
"type": "relation",
"target": "application::restaurant.restaurant",
"relation": "oneToOne",
"mappedBy": "menu"
}
}
}