aboutsummaryrefslogtreecommitdiff
path: root/quotes/index.js
diff options
context:
space:
mode:
authorLarsVomMars2020-10-03 12:59:22 +0200
committerLarsVomMars2020-10-03 12:59:30 +0200
commit069e4d5a3bb03d4fcba46ae40657eb55b8581c53 (patch)
tree4428dddd1ed5b05d356874d161e3d7ba5cac52dd /quotes/index.js
parent0fd8f61362403934550b360cbd65f1b41d66c870 (diff)
Delte owner
Diffstat (limited to 'quotes/index.js')
-rw-r--r--quotes/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/quotes/index.js b/quotes/index.js
index 9683009..5aa0646 100644
--- a/quotes/index.js
+++ b/quotes/index.js
@@ -22,7 +22,8 @@ app.post("/api/add", checkUser, async (req, res) => {
app.get("/api/list", checkUser, async (req, res) => {
const quotes = await db.query(
- "SELECT q.id, a.name, a.middlename, a.surname, q.quote, c.name AS class FROM quotes AS q INNER JOIN users AS a ON author_id = a.id INNER JOIN class AS c ON a.class_id = c.id ORDER BY a.name",
+ "SELECT q.id, a.name, a.middlename, a.surname, q.quote, c.name AS class, (q.user_id = ?) AS owner FROM quotes AS q INNER JOIN users AS a ON author_id = a.id INNER JOIN class AS c ON a.class_id = c.id ORDER BY a.name",
+ [req.session.uid],
);
res.json(quotes);
});