Is your feature request related to a problem? Please describe.
- to clearly map user types/roles to resources, a new property is added to each of the route entries.
- this entry is used to uniquely identify the resource so that further application logic can be implemented.
Describe the solution you'd like

- by adding a new property which specify the resource (i.e.
/slide) and the operation on it (i.e. /create, /delete ...)
{
"route": "/data/Template/post",
"method": "post",
"access": {
"entity": "template",
"operation": "create"
},
"handlers": []
}