From 8f7c764348d49b2cf18e27c61c8cbbdcdc222f8c Mon Sep 17 00:00:00 2001
From: Hanen Alrwasheda <alrwasheda@mi.fu-berlin.de>
Date: Sun, 16 Jan 2022 05:11:55 +0100
Subject: [PATCH] update Boat by Id route

---
 server/src/routes/boatRoutes.routes.ts | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/server/src/routes/boatRoutes.routes.ts b/server/src/routes/boatRoutes.routes.ts
index 8e3ba0a..a6902d1 100644
--- a/server/src/routes/boatRoutes.routes.ts
+++ b/server/src/routes/boatRoutes.routes.ts
@@ -31,4 +31,15 @@ boatsRouter.post(
   boatControllers.createBoat
 );
 
+//update boat by id
+boatsRouter.patch(
+  "/api/boat/:id/",
+  body("name").if(body("name").exists()).not().isEmpty(),
+  body("boattype").if(body("boattype").exists()).not().isEmpty(),
+  body("status").if(body("status").exists()).not().isEmpty().isIn([1, 0]),
+  body("tags").if(body("tags").exists()).not().isEmpty().isArray(),
+  handleValidationResult,
+  validateToken,
+  boatControllers.updateBoatById
+)
 export default boatsRouter;
-- 
GitLab