From bc57a7bdf55fec6f35f31afdc5feb9cbca6cd459 Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Wed, 13 Jan 2021 16:03:53 +0100 Subject: Minor fixes --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app.js') diff --git a/app.js b/app.js index 6f4468d..a14964f 100644 --- a/app.js +++ b/app.js @@ -34,8 +34,8 @@ app.use(express.json()); app.use("/", express.static(__dirname + "/overview/public")); app.use("/mottovote", checkUser, mottovote); app.use("/quotes", checkUser, quotes); -// app.use("/poll", checkUser, poll); -// app.use("/profile", checkUser, profile); +app.use("/poll", checkUser, poll); +app.use("/profile", checkUser, profile); app.use("/admin", admin); // Lel app.use("/auth", auth); -- cgit v1.2.3