From 68c29ab9d028c574acf1501fec71e662b798dc58 Mon Sep 17 00:00:00 2001 From: Margaret M Bertoni Date: Fri, 14 Nov 2025 10:24:34 -0500 Subject: [PATCH] Add code review comment for route organization Added a code review comment suggesting to refactor routes. --- backend/routes/routes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/routes/routes.js b/backend/routes/routes.js index 8b79ad5..c2da673 100644 --- a/backend/routes/routes.js +++ b/backend/routes/routes.js @@ -337,3 +337,4 @@ router.delete("/daily/:dayId/task/:taskIndex", async (req, res) => { }); export default router; +/* Code Review: Code is well organized and includes comments to describe the diffenrent routes. Given the large quantity of routes, I would suggest breaking this out into multiple files, or pulling some sub functionality out into a separate file*/