From c6d620c20f05e9c28aac1d2a0ee4b7b7a338b467 Mon Sep 17 00:00:00 2001 From: Vinayak Agrawal Date: Wed, 18 Jun 2025 18:10:37 +0530 Subject: [PATCH] Update index.js --- app/routes/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/routes/index.js b/app/routes/index.js index a9e55426bf..0f62a53b20 100644 --- a/app/routes/index.js +++ b/app/routes/index.js @@ -50,6 +50,11 @@ const index = (app, db) => { // Contributions Page app.get("/contributions", isLoggedIn, contributionsHandler.displayContributions); app.post("/contributions", isLoggedIn, contributionsHandler.handleContributionsUpdate); + // Research Page + app.get("/research", isLoggedIn, researchHandler.displayResearch); + + // Mount tutorial router + app.use("/tutorial", tutorialRouter); // Benefits Page app.get("/benefits", isLoggedIn, benefitsHandler.displayBenefits);