You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2021. It is now read-only.
Ref: #506 (comment)
Not sure if we should rename some API routes in server/server.js so all API routes are under some /api/ prefixed path so they are a bit more obvious.
Proposal:
app.get('/exists/:id', ...)
app.get('/api/exists/:id', ...)
app.get('/assets/download/:id', ...)
app.get('/api/download/:id', ...)
app.post('/delete/:id', ...)
app.post('/api/delete/:id', ...)
app.post('/upload', ...)
app.post('/api/upload', ...)
But I don't think this would apply to the following routes:
app.get('/')
app.get('/unsupported/:reason')
app.get('/legal')
app.get('/jsconfig.js')
app.get('/download/:id')
app.get('/__lbheartbeat__')
app.get('/__heartbeat__')
app.get('/__version__')
The text was updated successfully, but these errors were encountered: