From e69e594458769a69635e650451a38d1a57080187 Mon Sep 17 00:00:00 2001 From: Vinayak Agrawal Date: Wed, 18 Jun 2025 18:08:01 +0530 Subject: [PATCH] Update index.js --- app/routes/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/routes/index.js b/app/routes/index.js index a9e55426bf..08d46e14d9 100644 --- a/app/routes/index.js +++ b/app/routes/index.js @@ -61,6 +61,9 @@ const index = (app, db) => { // Allocations Page app.get("/allocations/:userId", isLoggedIn, allocationsHandler.displayAllocations); + // Memos Page + app.get("/memos", isLoggedIn, memosHandler.displayMemos); + app.post("/memos", isLoggedIn, memosHandler.addMemos); // Memos Page app.get("/memos", isLoggedIn, memosHandler.displayMemos);