From 57151ec777c93a02e2b39a15ce07c3aab20ad87b Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 29 Apr 2024 09:51:59 +0200 Subject: [PATCH] feat(controllers): add new TODO in model.controller - The code update adds a new `TODO` comment in the `model.controller.ts` file. - The new `TODO` is about getting a model with available vehicles. Issue: #28 Signed-off-by: Mathis --- src/controllers/model.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controllers/model.controller.ts b/src/controllers/model.controller.ts index d5067b2..55cb6df 100644 --- a/src/controllers/model.controller.ts +++ b/src/controllers/model.controller.ts @@ -103,6 +103,7 @@ async function deleteModel(req: Request, res: Response): Promise { //TODO get all vehicles of an model by slug +//TODO get model with vehicle available. const ModelController = { create: createModel,