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

28 lines
466 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
"increments": true,
"timestamps": true,
"comment": ""
},
"attributes": {
"description": {
"type": "text"
},
"menusections": {
"via": "menu",
"collection": "menusection"
2019-10-09 18:06:51 +02:00
},
"restaurant": {
2019-12-05 18:41:04 +01:00
"via": "menu",
"model": "restaurant"
2019-08-22 14:10:45 +02:00
}
}
2019-12-05 16:27:55 +01:00
}