change route from /url to /api
This commit is contained in:
parent
9c82e44cca
commit
6ba968b1f9
@ -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(`
|
||||
|
@ -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',
|
||||
|
@ -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 => {
|
||||
|
Loading…
Reference in New Issue
Block a user