I inherited a model in a loop like this, -
{
"name": "MyModel",
"base": "AnotherModel",
"idInjection": false,
"properties": {
"value": {
"type": "String"
},
"display": {
"type": "String"
}
},
"validations": [],
"relations": {},
"acls": [],
"methods": []
}
For now, I can call all deleted methods AnotherModelfrom my file MyModel.js. But remote methods AnotherModeldo not appear in my explorer. How to make all the remote methods of my inherited model appear in Explorer?
source
share