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 <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-04-26 10:29:07 +02:00
parent c25b204c67
commit 2f4ad31edf
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -140,6 +140,8 @@ async function deleteBrand(req: Request, res: Response): Promise<Response> {
return res.status(200).json({ message: "Brand deleted successfully" }); return res.status(200).json({ message: "Brand deleted successfully" });
} }
//TODO get models of the brand
const BrandController = { const BrandController = {
create: createBrand, create: createBrand,
update: updateBrand, update: updateBrand,