aboutsummaryrefslogtreecommitdiff
path: root/admin/index.js
diff options
context:
space:
mode:
authorMarvin Borner2020-10-20 21:53:57 +0200
committerMarvin Borner2020-10-20 21:54:15 +0200
commit36936cbc7e79e4eef2f2e49432eeb31e4198e5bd (patch)
tree8f54b905a24c92aff95957c867891a37d11e8723 /admin/index.js
parent5e345852a79e7f803d7796cb14c0c13a5be3ad14 (diff)
Quick and dirty participation statistics
Diffstat (limited to 'admin/index.js')
-rw-r--r--admin/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/admin/index.js b/admin/index.js
index 407bbcf..99c876a 100644
--- a/admin/index.js
+++ b/admin/index.js
@@ -52,4 +52,11 @@ app.get("/api/votes", checkAdmin, async (req, res) => {
res.json(votes);
});
+app.get("/api/participation", checkAdmin, async (req, res) => {
+ const participation = await db.query(
+ "SELECT c.name, CAST(COUNT(DISTINCT user_id) AS float) / CAST((SELECT COUNT(*) FROM users WHERE class_id = u.class_id) AS float) * 100 percentage FROM motto_votes INNER JOIN users u ON user_id = u.id INNER JOIN class c ON class_id = c.id GROUP BY class_id",
+ );
+ res.json(participation);
+});
+
module.exports = app;