strapi/examples/getstarted/api/menu/models/Menu.settings.json

30 lines
587 B
JSON
Raw Normal View History

2019-08-22 14:10:45 +02:00
{
"kind": "collectionType",
2019-08-22 14:10:45 +02:00
"collectionName": "menus",
"info": {
"name": "menu",
"description": ""
},
"options": {
"draftAndPublish": false,
2019-08-22 14:10:45 +02:00
"comment": ""
},
"attributes": {
"description": {
"type": "text"
},
"menusections": {
2021-06-18 12:27:47 +02:00
"type": "relation",
"relation": "oneToMany",
"target": "application::menusection.menusection",
"mappedBy": "menu"
2019-10-09 18:06:51 +02:00
},
"restaurant": {
2021-06-18 12:27:47 +02:00
"type": "relation",
"target": "application::restaurant.restaurant",
2021-07-08 18:15:32 +02:00
"relation": "oneToOne",
2021-06-18 12:27:47 +02:00
"mappedBy": "menu"
2019-08-22 14:10:45 +02:00
}
}
2019-12-05 16:27:55 +01:00
}