No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

53 líneas
959 B

  1. {
  2. "routes": [
  3. {
  4. "method": "GET",
  5. "path": "/restaurants",
  6. "handler": "restaurant.find",
  7. "config": {
  8. "policies": []
  9. }
  10. },
  11. {
  12. "method": "GET",
  13. "path": "/restaurants/count",
  14. "handler": "restaurant.count",
  15. "config": {
  16. "policies": []
  17. }
  18. },
  19. {
  20. "method": "GET",
  21. "path": "/restaurants/:id",
  22. "handler": "restaurant.findOne",
  23. "config": {
  24. "policies": []
  25. }
  26. },
  27. {
  28. "method": "POST",
  29. "path": "/restaurants",
  30. "handler": "restaurant.create",
  31. "config": {
  32. "policies": []
  33. }
  34. },
  35. {
  36. "method": "PUT",
  37. "path": "/restaurants/:id",
  38. "handler": "restaurant.update",
  39. "config": {
  40. "policies": []
  41. }
  42. },
  43. {
  44. "method": "DELETE",
  45. "path": "/restaurants/:id",
  46. "handler": "restaurant.delete",
  47. "config": {
  48. "policies": []
  49. }
  50. }
  51. ]
  52. }