Files
api.pawol.nu/api/awtis/config/routes.json
T

53 lines
893 B
JSON

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