mirror of
https://github.com/strapi/strapi.git
synced 2026-01-07 20:58:16 +00:00
37 lines
702 B
JSON
37 lines
702 B
JSON
{
|
|
"kind": "singleType",
|
|
"collectionName": "homepages",
|
|
"info": {
|
|
"name": "Homepage"
|
|
},
|
|
"options": {
|
|
"draftAndPublish": true,
|
|
"increments": true,
|
|
"timestamps": true
|
|
},
|
|
"attributes": {
|
|
"title": {
|
|
"type": "string"
|
|
},
|
|
"slug": {
|
|
"type": "uid",
|
|
"targetField": "title",
|
|
"required": true
|
|
},
|
|
"single": {
|
|
"model": "file",
|
|
"via": "related",
|
|
"allowedTypes": ["images", "files", "videos"],
|
|
"plugin": "upload",
|
|
"required": false
|
|
},
|
|
"multiple": {
|
|
"collection": "file",
|
|
"via": "related",
|
|
"allowedTypes": ["images", "videos"],
|
|
"plugin": "upload",
|
|
"required": false
|
|
}
|
|
}
|
|
}
|