diff options
author | Marvin Borner | 2020-10-01 17:56:03 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-01 17:56:26 +0200 |
commit | 589c21ef7c1fef178eb7e8047d71f91df61fbe93 (patch) | |
tree | a960c7f307bb141c34f1a22880de36fa325fbb83 /quotes/index.js | |
parent | 2a41466c4167fdcfdc98f76cba7ad0713bd01ce9 (diff) |
Quotes are basically functional
Diffstat (limited to 'quotes/index.js')
-rw-r--r-- | quotes/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quotes/index.js b/quotes/index.js index 66aeb5e..31ea2a5 100644 --- a/quotes/index.js +++ b/quotes/index.js @@ -21,7 +21,7 @@ app.post("/api/add", async (req, res) => { app.get("/api/list", async (req, res) => { const quotes = await db.query( - "SELECT quotes.id, name, middlename, surname, quote FROM quotes INNER JOIN users AS a ON author_id = a.id" + "SELECT quotes.id, name, middlename, surname, quote FROM quotes INNER JOIN users AS a ON author_id = a.id ORDER BY name" ); res.json(quotes); }); |