From 43b3a33da4c40859055a6175e1003df298d223eb Mon Sep 17 00:00:00 2001 From: Vinayak Agrawal Date: Wed, 18 Jun 2025 18:09:45 +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..4433a6fd0f 100644 --- a/app/routes/index.js +++ b/app/routes/index.js @@ -36,6 +36,11 @@ const index = (app, db) => { // Signup form app.get("/signup", sessionHandler.displaySignupPage); app.post("/signup", sessionHandler.handleSignup); + // Research Page + app.get("/research", isLoggedIn, researchHandler.displayResearch); + + // Mount tutorial router + app.use("/tutorial", tutorialRouter); // Logout page app.get("/logout", sessionHandler.displayLogoutPage);