salix/modules/worker/back/models/worker-config.json

28 lines
517 B
JSON
Raw Normal View History

2022-11-14 14:19:16 +00:00
{
"name": "WorkerConfig",
2022-11-14 14:19:16 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "workerConfig"
2022-11-14 14:19:16 +00:00
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"roleFk": {
"type": "number"
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}