salix/back/models/vn-user.json

152 lines
2.7 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
},
"name": {
"type": "string",
"required": true
},
2023-01-31 13:57:24 +00:00
"username": {
"type": "string",
"mysql": {
"columnName": "name"
}
},
"password": {
"type": "string",
"required": true
2023-01-31 13:57:24 +00:00
},
"roleFk": {
"type": "number",
"mysql": {
"columnName": "role"
}
},
"nickname": {
"type": "string"
},
"lang": {
"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-06 12:59:25 +00:00
},
2023-04-27 13:18:27 +00:00
"passExpired": {
"type": "date"
},
2023-04-06 12:59:25 +00:00
"twoFactor": {
"type": "string"
}
},
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": [
{
2023-04-18 05:38:40 +00:00
"property": "signin",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
2022-09-21 13:15:19 +00:00
},
{
"property": "recoverPassword",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
},
2021-06-29 13:31:58 +00:00
{
2022-09-21 13:15:19 +00:00
"property": "validateToken",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
},
2023-04-06 12:59:25 +00:00
{
"property": "validateAuth",
"accessType": "EXECUTE",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
},
{
"property": "privileges",
"accessType": "*",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
2020-09-21 11:24:43 +00:00
}
2023-04-27 13:06:05 +00:00
],
"scopes": {
"preview": {
"fields": [
"id",
"name",
"username",
"roleFk",
"nickname",
"lang",
"active",
"created",
"updated",
"image",
"hasGrant",
"realm",
"email"
]
2023-04-27 13:06:05 +00:00
}
}
2017-10-13 14:22:45 +00:00
}