mirror of
https://github.com/strapi/strapi.git
synced 2025-08-17 13:16:08 +00:00
65 lines
1.2 KiB
JSON
65 lines
1.2 KiB
JSON
{
|
|
"connection": "default",
|
|
"collectionName": "users-permissions_user",
|
|
"info": {
|
|
"name": "user",
|
|
"description": ""
|
|
},
|
|
"options": {
|
|
"timestamps": [
|
|
"created_at",
|
|
"updated_at"
|
|
]
|
|
},
|
|
"attributes": {
|
|
"username": {
|
|
"type": "string",
|
|
"minLength": 3,
|
|
"unique": true,
|
|
"configurable": false,
|
|
"required": true
|
|
},
|
|
"email": {
|
|
"type": "email",
|
|
"minLength": 6,
|
|
"configurable": false,
|
|
"required": true
|
|
},
|
|
"provider": {
|
|
"type": "string",
|
|
"configurable": false
|
|
},
|
|
"password": {
|
|
"type": "password",
|
|
"minLength": 6,
|
|
"configurable": false,
|
|
"private": true
|
|
},
|
|
"resetPasswordToken": {
|
|
"type": "string",
|
|
"configurable": false,
|
|
"private": true
|
|
},
|
|
"confirmed": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"configurable": false
|
|
},
|
|
"blocked": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"configurable": false
|
|
},
|
|
"role": {
|
|
"model": "role",
|
|
"via": "users",
|
|
"plugin": "users-permissions",
|
|
"configurable": false
|
|
},
|
|
"picture": {
|
|
"model": "file",
|
|
"via": "related",
|
|
"plugin": "upload"
|
|
}
|
|
}
|
|
} |