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

53 lines
929 B
JSON
Executable File

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