I'm new at loopback and i'm trying to customize the User built-in model by denying access to all methods of the customized user model (for testing) and the result is that i can access to some of the user methods (like create user).
{
"name": "user",
"base": "User",
"idInjection": true,
"properties": {},
"validations": [],
"relations": {},
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "DENY"
}
],
"methods": []
}
what am i missing?