aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
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 1fad292..6351b60 100644
--- a/app.js
+++ b/app.js
@@ -32,8 +32,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", checkAdmin, admin);
app.use("/auth", auth);