2019-08-28 17:20:53 +02:00

53 lines
887 B
JSON
Executable File

{
"routes": [
{
"method": "GET",
"path": "/likes",
"handler": "Like.find",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/likes/count",
"handler": "Like.count",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/likes/:id",
"handler": "Like.findOne",
"config": {
"policies": []
}
},
{
"method": "POST",
"path": "/likes",
"handler": "Like.create",
"config": {
"policies": []
}
},
{
"method": "PUT",
"path": "/likes/:id",
"handler": "Like.update",
"config": {
"policies": []
}
},
{
"method": "DELETE",
"path": "/likes/:id",
"handler": "Like.delete",
"config": {
"policies": []
}
}
]
}