diff options
author | Marvin Borner | 2020-11-05 20:07:08 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-05 20:09:01 +0100 |
commit | 8050da7e8c3229bc400023fe87767f43b7ead4ff (patch) | |
tree | 9719118ac8998087f71072307391a59a8fb2e0f4 /admin/index.js | |
parent | 50f973d67af54cf52dbdc64e98b33ccd3cd8210e (diff) |
Whoops (symlinks are also broken lol)
Diffstat (limited to 'admin/index.js')
-rw-r--r-- | admin/index.js | 2 |
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", ); |