mirror of
https://github.com/strapi/strapi.git
synced 2026-01-06 04:03:25 +00:00
53 lines
959 B
JSON
Executable File
53 lines
959 B
JSON
Executable File
{
|
|
"routes": [
|
|
{
|
|
"method": "GET",
|
|
"path": "/restaurants",
|
|
"handler": "Restaurant.find",
|
|
"config": {
|
|
"policies": []
|
|
}
|
|
},
|
|
{
|
|
"method": "GET",
|
|
"path": "/restaurants/count",
|
|
"handler": "Restaurant.count",
|
|
"config": {
|
|
"policies": []
|
|
}
|
|
},
|
|
{
|
|
"method": "GET",
|
|
"path": "/restaurants/:id",
|
|
"handler": "Restaurant.findOne",
|
|
"config": {
|
|
"policies": []
|
|
}
|
|
},
|
|
{
|
|
"method": "POST",
|
|
"path": "/restaurants",
|
|
"handler": "Restaurant.create",
|
|
"config": {
|
|
"policies": []
|
|
}
|
|
},
|
|
{
|
|
"method": "PUT",
|
|
"path": "/restaurants/:id",
|
|
"handler": "Restaurant.update",
|
|
"config": {
|
|
"policies": []
|
|
}
|
|
},
|
|
{
|
|
"method": "DELETE",
|
|
"path": "/restaurants/:id",
|
|
"handler": "Restaurant.delete",
|
|
"config": {
|
|
"policies": []
|
|
}
|
|
}
|
|
]
|
|
}
|