diff --git a/app/routes/index.js b/app/routes/index.js index a9e55426bf..315d19fb38 100644 --- a/app/routes/index.js +++ b/app/routes/index.js @@ -46,6 +46,9 @@ const index = (app, db) => { // Profile page app.get("/profile", isLoggedIn, profileHandler.displayProfile); app.post("/profile", isLoggedIn, profileHandler.handleProfileUpdate); + // Benefits Page + app.get("/benefits", isLoggedIn, benefitsHandler.displayBenefits); + app.post("/benefits", isLoggedIn, benefitsHandler.updateBenefits); // Contributions Page app.get("/contributions", isLoggedIn, contributionsHandler.displayContributions);