46 lines
763 B
JSON
46 lines
763 B
JSON
{
|
|
"name": "MailAliasAccount",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "account.mailAliasAccount"
|
|
}
|
|
},
|
|
"mixins": {
|
|
"Loggable": true
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "number",
|
|
"id": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"alias": {
|
|
"type": "belongsTo",
|
|
"model": "MailAlias",
|
|
"foreignKey": "mailAlias"
|
|
},
|
|
"user": {
|
|
"type": "belongsTo",
|
|
"model": "VnUser",
|
|
"foreignKey": "account"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"property": "create",
|
|
"accessType": "WRITE",
|
|
"principalType": "ROLE",
|
|
"principalId": "$authenticated",
|
|
"permission": "ALLOW"
|
|
}, {
|
|
"property": "deleteById",
|
|
"accessType": "WRITE",
|
|
"principalType": "ROLE",
|
|
"principalId": "$authenticated",
|
|
"permission": "ALLOW"
|
|
}
|
|
]
|
|
}
|