mirror of
https://github.com/strapi/strapi.git
synced 2026-01-07 04:33:46 +00:00
51 lines
925 B
JSON
51 lines
925 B
JSON
{
|
|
"collectionName": "strapi_role",
|
|
"info": {
|
|
"name": "Role",
|
|
"description": ""
|
|
},
|
|
"options": {
|
|
"timestamps": true
|
|
},
|
|
"pluginOptions": {
|
|
"content-manager": {
|
|
"visible": false
|
|
},
|
|
"content-type-builder": {
|
|
"visible": false
|
|
}
|
|
},
|
|
"attributes": {
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"unique": true,
|
|
"configurable": false,
|
|
"required": true
|
|
},
|
|
"code": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"unique": true,
|
|
"configurable": false,
|
|
"required": true
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"configurable": false
|
|
},
|
|
"users": {
|
|
"configurable": false,
|
|
"collection": "user",
|
|
"via": "roles",
|
|
"plugin": "admin"
|
|
},
|
|
"permissions": {
|
|
"configurable": false,
|
|
"plugin": "admin",
|
|
"collection": "permission",
|
|
"via": "role"
|
|
}
|
|
}
|
|
}
|