Guest User

Untitled

a guest
Nov 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. router.route('/platillos/:id')
  2. .get(PlatilloCtrl.getPlatillosById)
  3. .post(upload.array(),PlatilloCtrl.addComentario)
  4. .put(upload.array(),PlatilloCtrl.updatePlatillo)
  5. .delete(PlatilloCtrl.deletePlatillo);
  6.  
  7. router.route('/platillosC/:categoria')
  8. .get(PlatilloCtrl.getPlatillosByCategoria);
Add Comment
Please, Sign In to add comment