From 4ef9dd7d665248e308024e75c0921aabe646d07a Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 23 Jul 2024 13:27:45 +0200 Subject: rename some api links --- server.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'server.js') diff --git a/server.js b/server.js index 2685e18..ec8b96d 100644 --- a/server.js +++ b/server.js @@ -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) -- cgit v1.2.3