aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorLarsVomMars2021-01-13 16:03:53 +0100
committerLarsVomMars2021-01-13 16:04:09 +0100
commitbc57a7bdf55fec6f35f31afdc5feb9cbca6cd459 (patch)
tree9b0c1d52d21836c2adf71e2225a93d54362374d8 /app.js
parent7283e35ceafb656c74af379b0bf0ee9e85ddfb4c (diff)
Minor fixes
Diffstat (limited to 'app.js')
-rw-r--r--app.js4
1 files changed, 2 insertions, 2 deletions
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);