From 6ba968b1f9afa385554eff3d253201fa4e5c4c5c Mon Sep 17 00:00:00 2001 From: me Date: Fri, 14 Mar 2025 15:29:00 +0200 Subject: [PATCH] change route from /url to /api --- backend/main.mjs | 4 ++-- frontend/src/CommentForm.jsx | 2 +- frontend/src/CommentList.jsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/main.mjs b/backend/main.mjs index deac402..8d3bcf1 100644 --- a/backend/main.mjs +++ b/backend/main.mjs @@ -94,7 +94,7 @@ const limiter20 = RateLimit({ app.use(express.json()); -app.post('/url/:site/*', limiter20, (req, res) => { +app.post('/api/:site/*', limiter20, (req, res) => { const site = req.params.site; const path = req.params[0]; @@ -166,7 +166,7 @@ app.use(limiter500); app.use(express.static("public")); -app.get('/url/:site/*', (req, res) => { +app.get('/api/:site/*', (req, res) => { const site = req.params.site; const path = req.params[0]; const stmt = db.prepare(` diff --git a/frontend/src/CommentForm.jsx b/frontend/src/CommentForm.jsx index f5ecde1..9e36e2a 100644 --- a/frontend/src/CommentForm.jsx +++ b/frontend/src/CommentForm.jsx @@ -44,7 +44,7 @@ export default function CommentForm({ url, site, path }) { return; } - fetch(url + '/url/' + site + '/' + path, { + fetch(url + '/api/' + site + '/' + path, { method: 'POST', headers: { 'Content-Type': 'application/json', diff --git a/frontend/src/CommentList.jsx b/frontend/src/CommentList.jsx index 010b3d2..4a5b275 100644 --- a/frontend/src/CommentList.jsx +++ b/frontend/src/CommentList.jsx @@ -18,7 +18,7 @@ const reply = details => { export default function CommentList({ url, site, path }) { const [comments, setComments] = useState([]); useEffect(() => { - fetch(url + '/url/' + site + '/' + path) + fetch(url + '/api/' + site + '/' + path) .then(response => { console.log(response); return response.json() }) .then(data => setComments(data)) .catch(error => {