aboutsummaryrefslogtreecommitdiff
path: root/admin/index.js
diff options
context:
space:
mode:
authorLarsVomMars2021-02-06 20:34:19 +0100
committerLarsVomMars2021-02-06 20:34:19 +0100
commit19ed7cdbe9b911d08f3e689d1f7c2e36780f71aa (patch)
tree2833d33ec353caed8bc2ec45d43a4c4399dfe298 /admin/index.js
parent5e950bf5b3ed34c48421ab228132dd25dee76d6e (diff)
Lulz
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 37e5914..49bdee8 100644
--- a/admin/index.js
+++ b/admin/index.js
@@ -76,7 +76,7 @@ app.get("/api/participation", checkAdmin, async (req, res) => {
app.get("/api/prediction", checkAdmin, async (req, res) => {
const prediction = await db.query(
- "SELECT u.name uname, u.middlename umid, u.surname usur, t.id tid, t.name tname, t.surname tsur, c.name class FROM users u INNER JOIN teacher_prediction p ON u.id = p.user_id INNER JOIN users t ON t.id = p.teacher_id INNER JOIN class c ON c.id = u.class_id",
+ "SELECT u.name uname, u.middlename umid, u.surname usur, t.id tid, t.name tname, t.surname tsur, c.name class FROM users u INNER JOIN teacher_prediction p ON u.id = p.user_id INNER JOIN users t ON t.id = p.teacher_id INNER JOIN class c ON c.id = u.class_id ORDER BY t.surname, t.name",
);
res.json(prediction);
});