salix/back/models/vn-user.json

129 lines
2.1 KiB
JSON
Raw Normal View History

2017-10-13 14:22:45 +00:00
{
"name": "VnUser",
"base": "User",
"validateUpsert": true,
"options": {
"mysql": {
"table": "account.user"
}
2020-09-21 11:24:43 +00:00
},
"resetPasswordTokenTTL": "604800",
"properties": {
"id": {
"type": "number",
"id": true
},
2023-05-23 13:12:28 +00:00
"name": {
"type": "string",
"required": true
},
2023-01-31 13:57:24 +00:00
"username": {
"type": "string",
"mysql": {
"columnName": "name"
}
},
"password": {
"type": "string",
"required": true,
"mysql": {
"columnName": "bcryptPassword"
}
},
"roleFk": {
"type": "number",
"mysql": {
"columnName": "role"
}
},
"nickname": {
"type": "string"
},
"lang": {
"type": "string"
},
2023-05-23 13:12:28 +00:00
"bcryptPassword": {
"type": "string"
},
"active": {
"type": "boolean"
},
"email": {
"type": "string"
},
"created": {
"type": "date"
},
"updated": {
"type": "date"
2020-11-11 09:52:35 +00:00
},
"image": {
2022-05-12 07:47:47 +00:00
"type": "string"
},
"hasGrant": {
"type": "boolean"
2023-04-27 13:18:27 +00:00
},
"passExpired": {
"type": "date"
}
},
2020-09-21 11:24:43 +00:00
"relations": {
"role": {
"type": "belongsTo",
"model": "Role",
"foreignKey": "roleFk"
},
"roles": {
"type": "hasMany",
"model": "RoleRole",
"foreignKey": "role",
"primaryKey": "roleFk"
2020-09-21 11:24:43 +00:00
},
"emailUser": {
"type": "hasOne",
"model": "EmailUser",
"foreignKey": "userFk"
},
"worker": {
"type": "hasOne",
"model": "Worker",
"foreignKey": "userFk"
},
"userConfig": {
"type": "hasOne",
"model": "UserConfig",
"foreignKey": "userFk"
2020-09-21 11:24:43 +00:00
}
},
"acls": [
{
"property": "signIn",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
2023-01-25 13:14:55 +00:00
},
{
"property": "recoverPassword",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
},
{
2023-01-25 13:14:55 +00:00
"property": "validateToken",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
2023-01-25 13:14:55 +00:00
},
{
"property": "privileges",
"accessType": "*",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
2020-09-21 11:24:43 +00:00
}
]
}