aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index 92f4c8b..6f4468d 100644
--- a/app.js
+++ b/app.js
@@ -36,7 +36,7 @@ app.use("/mottovote", checkUser, mottovote);
app.use("/quotes", checkUser, quotes);
// app.use("/poll", checkUser, poll);
// app.use("/profile", checkUser, profile);
-app.use("/admin", checkUser, admin);
+app.use("/admin", admin); // Lel
app.use("/auth", auth);
app.listen(process.env.PORT || 5005, () => console.log(`Server started on http://localhost:${process.env.PORT}`));