From 2f4ad31edfeb06d35aa8862bd2964c59fa29694c Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 26 Apr 2024 10:29:07 +0200 Subject: [PATCH] docs(controllers): add TODO comment for future feature in brand controller In the brand controller file, a comment was added indicating a future enhancement to implement the functionality that fetches all models of a specific brand. Signed-off-by: Mathis --- src/controllers/brand.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/brand.controller.ts b/src/controllers/brand.controller.ts index bb465a8..d716367 100644 --- a/src/controllers/brand.controller.ts +++ b/src/controllers/brand.controller.ts @@ -140,6 +140,8 @@ async function deleteBrand(req: Request, res: Response): Promise { return res.status(200).json({ message: "Brand deleted successfully" }); } +//TODO get models of the brand + const BrandController = { create: createBrand, update: updateBrand,