salix/modules/account/back/models/mail.json

36 lines
641 B
JSON
Raw Normal View History

2020-08-11 09:03:43 +00:00
{
"name": "Mail",
"base": "VnModel",
"options": {
"mysql": {
"table": "mail"
}
},
"properties": {
"id": {
"id": true,
"type": "number"
2020-08-11 09:03:43 +00:00
},
"receiver": {
"type": "string"
2020-08-11 09:03:43 +00:00
},
"replyTo": {
"type": "string"
2020-08-11 09:03:43 +00:00
},
"subject": {
"type": "string"
2020-08-11 09:03:43 +00:00
},
"body": {
"type": "string"
2020-08-11 09:03:43 +00:00
}
},
"acls": [
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}
]
}