freeCodeCamp/api-server/common/models/User-Identity.json

24 lines
410 B
JSON
Raw Normal View History

2015-06-04 17:52:12 +00:00
{
"name": "userIdentity",
"plural": "userIdentities",
"base": "UserIdentity",
"properties": {},
"validations": [],
"relations": {
"user": {
"type": "belongsTo",
"model": "user",
"foreignKey": "userId"
}
},
2015-06-24 15:23:49 +00:00
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "DENY"
}
],
"methods": {}
2015-06-04 17:52:12 +00:00
}