2020-03-09 08:00:03 +00:00
|
|
|
{
|
|
|
|
"name": "MailAlias",
|
|
|
|
"base": "VnModel",
|
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "account.mailAlias"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "number",
|
|
|
|
"id": true
|
|
|
|
},
|
|
|
|
"alias": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"isPublic": {
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"accounts": {
|
|
|
|
"type": "hasMany",
|
|
|
|
"model": "MailAliasAccount",
|
|
|
|
"foreignKey": "mailAlias",
|
|
|
|
"property": "id"
|
|
|
|
}
|
2021-11-25 10:30:55 +00:00
|
|
|
},
|
|
|
|
"acls": [{
|
|
|
|
"accessType": "READ",
|
|
|
|
"principalType": "ROLE",
|
|
|
|
"principalId": "$everyone",
|
|
|
|
"permission": "ALLOW"
|
|
|
|
}]
|
2020-03-09 08:00:03 +00:00
|
|
|
}
|