aboutsummaryrefslogtreecommitdiff
path: root/admin/index.js
diff options
context:
space:
mode:
authorMarvin Borner2020-11-05 20:07:08 +0100
committerMarvin Borner2020-11-05 20:09:01 +0100
commit8050da7e8c3229bc400023fe87767f43b7ead4ff (patch)
tree9719118ac8998087f71072307391a59a8fb2e0f4 /admin/index.js
parent50f973d67af54cf52dbdc64e98b33ccd3cd8210e (diff)
Whoops (symlinks are also broken lol)
Diffstat (limited to 'admin/index.js')
-rw-r--r--admin/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/index.js b/admin/index.js
index 8d71896..8c9c0ae 100644
--- a/admin/index.js
+++ b/admin/index.js
@@ -54,7 +54,7 @@ app.get("/api/answers", checkAdmin, async (req, res) => {
res.json(answers);
});
-app.get("/api/votes", checkUser, async (req, res) => {
+app.get("/api/votes", async (req, res) => {
const votes = await db.query(
"SELECT m.id, m.name, m.description, SUM(votes) votes FROM motto_votes mv RIGHT JOIN mottos m on mv.motto_id = m.id GROUP BY m.id, m.name, m.description ORDER BY SUM(votes) DESC",
);