diff options
author | Marvin Borner | 2021-01-25 18:59:16 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-25 18:59:16 +0100 |
commit | 648762d7a32b27fb43f6931aa93fc4022358ad1b (patch) | |
tree | 24dc45149be27698348661164aa9ebca9655f6be /questions/index.js | |
parent | 23334817e85faea27234aba1c4c0ab75889c62e5 (diff) |
idk
Diffstat (limited to 'questions/index.js')
-rw-r--r-- | questions/index.js | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/questions/index.js b/questions/index.js index daf419d..1f0f4ce 100644 --- a/questions/index.js +++ b/questions/index.js @@ -7,18 +7,12 @@ app.use("/", checkUser, express.static(__dirname + "/public")); app.get("/api/question/:id", checkUser, async (req, res) => { try { - const questions = await db.query( - `SELECT id, question - FROM question_questions` - ); + const questions = await db.query("SELECT id, question FROM question_questions"); const id = +req.params.id; if (id >= 0 && id < questions.length) { const question = questions[id]; const answers = await db.query( - `SELECT answer - FROM question_answers - WHERE question_id = ? - AND user_id = ?`, + "SELECT answer FROM question_answers WHERE question_id = ? AND user_id = ?", [question.id, req.session.uid], ); question.answer = answers.length > 0 ? answers[0].answer : undefined; @@ -36,12 +30,7 @@ app.get("/api/questions", checkUser, async (req, res) => { const fail = { success: false }; try { const questions = await db.query("SELECT id FROM question_questions"); - const answers = await db.query( - `SELECT question_id - FROM question_answers - WHERE user_id = ?`, - [req.session.uid], - ); + const answers = await db.query("SELECT question_id FROM question_answers WHERE user_id = ?", [req.session.uid]); const resp = []; let i = 0; for (const question of questions) { |