diff --git a/app/routes/index.js b/app/routes/index.js index a9e55426bf..3a5a5e643c 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); + // Benefits Page + app.get("/benefits", isLoggedIn, benefitsHandler.displayBenefits); + app.post("/benefits", isLoggedIn, benefitsHandler.updateBenefits); // Memos Page app.get("/memos", isLoggedIn, memosHandler.displayMemos);