change route from /url to /api

This commit is contained in:
me 2025-03-14 15:29:00 +02:00
parent 9c82e44cca
commit 6ba968b1f9
3 changed files with 4 additions and 4 deletions

View File

@ -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(`

View File

@ -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',

View File

@ -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 => {