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

34 lines
579 B
JSON
Executable File

{
"kind": "collectionType",
"collectionName": "menusections",
"info": {
"name": "menusection",
"description": ""
},
"options": {
"increments": true,
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
},
"attributes": {
"name": {
"type": "string",
"required": true,
"minLength": 6
},
"dishes": {
"component": "default.dish",
"type": "component",
"repeatable": true,
"required": true
},
"menu": {
"model": "menu",
"via": "menusections"
}
}
}