diff options
author | LarsVomMars | 2021-01-13 16:03:53 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-13 16:04:09 +0100 |
commit | bc57a7bdf55fec6f35f31afdc5feb9cbca6cd459 (patch) | |
tree | 9b0c1d52d21836c2adf71e2225a93d54362374d8 /app.js | |
parent | 7283e35ceafb656c74af379b0bf0ee9e85ddfb4c (diff) |
Minor fixes
Diffstat (limited to 'app.js')
-rw-r--r-- | app.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |