Add komante collections

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2021-06-22 21:45:40 +02:00
parent 0669b0b9e1
commit 2c57aa87df
10 changed files with 1673 additions and 1 deletions
+52
View File
@@ -0,0 +1,52 @@
{
"routes": [
{
"method": "GET",
"path": "/komante",
"handler": "komante.find",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/komante/count",
"handler": "komante.count",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/komante/:id",
"handler": "komante.findOne",
"config": {
"policies": []
}
},
{
"method": "POST",
"path": "/komante",
"handler": "komante.create",
"config": {
"policies": []
}
},
{
"method": "PUT",
"path": "/komante/:id",
"handler": "komante.update",
"config": {
"policies": []
}
},
{
"method": "DELETE",
"path": "/komante/:id",
"handler": "komante.delete",
"config": {
"policies": []
}
}
]
}