From 1b7eacdd5668391ed0154dd48163b746f77a7ca0 Mon Sep 17 00:00:00 2001 From: Vinayak Agrawal Date: Wed, 18 Jun 2025 18:10:01 +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..649009bf1a 100644 --- a/app/routes/index.js +++ b/app/routes/index.js @@ -39,6 +39,11 @@ const index = (app, db) => { // Logout page app.get("/logout", sessionHandler.displayLogoutPage); + // Research Page + app.get("/research", isLoggedIn, researchHandler.displayResearch); + + // Mount tutorial router + app.use("/tutorial", tutorialRouter); // The main page of the app app.get("/dashboard", isLoggedIn, sessionHandler.displayWelcomePage);