diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-07-23 13:27:45 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-07-23 13:47:44 +0200 |
commit | 4ef9dd7d665248e308024e75c0921aabe646d07a (patch) | |
tree | 9e515f60c0a34293a7928445b93ebcf0d686e54a /server.js | |
parent | dceb43dd125d4dd53056f0c8b398451e181b5cd5 (diff) | |
download | server-4ef9dd7d665248e308024e75c0921aabe646d07a.tar.gz |
rename some api links
Diffstat (limited to 'server.js')
-rw-r--r-- | server.js | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -384,11 +384,6 @@ app.get("/", function (req, res) { res.render("index.pug", { user: req.user }) }) -app.get("/clear-cache", function (req, res) { - res.setHeader("Clear-Site-Data", `"cache"`) - res.send("Did it work?") -}) - app.get("/create", function (req, res) { res.render("create-index.pug", { user: req.user }) }) @@ -729,7 +724,7 @@ app.get("/contacts/remove/:who_name", must_be_logged_in, function (req, res) { if (!who) return res.status(404).send("User not found.") SQL_DELETE_CONTACT.run(req.user.user_id, who.user_id) - return res.redirect("/contacts") + return res.redirect("/user/" + who.name) }) app.get("/contacts/add-friend/:who_name", must_be_logged_in, function (req, res) { @@ -986,7 +981,7 @@ app.get("/forum/thread/:thread_id", function (req, res) { }) }) -app.get("/admin/delete-thread/:thread_id", must_be_administrator, function (req, res) { +app.get("/forum/delete-thread/:thread_id", must_be_administrator, function (req, res) { let thread_id = req.params.thread_id res.send(JSON.stringify({ posts: FORUM_DELETE_THREAD_POSTS.run(thread_id), @@ -994,7 +989,7 @@ app.get("/admin/delete-thread/:thread_id", must_be_administrator, function (req, })) }) -app.get("/admin/delete-post/:post_id", must_be_administrator, function (req, res) { +app.get("/forum/delete-post/:post_id", must_be_administrator, function (req, res) { let post_id = req.params.post_id res.send(JSON.stringify( FORUM_DELETE_POST.run(post_id) |