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?
Customizing built-in models is actually not a good idea. Create a new model which extends the user model. The built-in user model resides in node_modules/loopback. If you make any change and push it to Git you probably might loose the change, as it most likely to be ignored during push.
Please check this answer. It hopefully will help you