mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-19 01:31:34 +00:00
Removed maxFile check on frontend
This commit is contained in:
parent
ddb6d0df7d
commit
6f7f3d60cb
@ -8,16 +8,6 @@ routes.get ('/check', (req, res, next) => {
|
||||
return res.json({ private: config.private })
|
||||
})
|
||||
|
||||
routes.get('/info', (req, res, next) => {
|
||||
if(config.private === true)
|
||||
if(req.headers.auth !== config.clientToken)
|
||||
return res.status(401).send('not-authorized')
|
||||
|
||||
return res.json({
|
||||
maxFileSize: config.uploads.maxsize.slice(0, -2)
|
||||
})
|
||||
})
|
||||
|
||||
routes.get ('/uploads', (req, res, next) => uploadController.list(req, res))
|
||||
routes.post ('/upload', (req, res, next) => uploadController.upload(req, res, next))
|
||||
routes.get ('/albums', (req, res, next) => albumsController.list(req, res, next))
|
||||
|
Loading…
Reference in New Issue
Block a user