{
"routes": [
{
"method": "GET",
"path": "/user-components",
"handler": "user-components.find",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/user-components/list",
"handler": "user-components.pagination",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/user-components/count",
"handler": "user-components.count",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/user-components/:id",
"handler": "user-components.findOne",
"config": {
"policies": []
}
},
{
"method": "POST",
"path": "/user-components",
"handler": "user-components.create",
"config": {
"policies": []
}
},
{
"method": "PUT",
"path": "/user-components/:id",
"handler": "user-components.update",
"config": {
"policies": []
}
},
{
"method": "DELETE",
"path": "/user-components/:id",
"handler": "user-components.delete",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/user-components/associated/:id",
"handler": "user-components.associated",
"config": {
"policies": []
}
}
]
}