Files
strapi-elb/api/about/models/about.settings.json
2020-04-27 03:13:14 +01:00

34 lines
539 B
JSON

{
"kind": "singleType",
"collectionName": "abouts",
"info": {
"name": "About"
},
"options": {
"increments": true,
"timestamps": true
},
"attributes": {
"Content": {
"type": "richtext"
},
"Title": {
"type": "string"
},
"Video": {
"collection": "file",
"via": "related",
"allowedTypes": [
"images",
"files",
"videos"
],
"plugin": "upload",
"required": false
},
"Optionextra": {
"type": "richtext"
}
}
}