aboutsummaryrefslogtreecommitdiff
path: root/routes/api.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes/api.js')
-rw-r--r--routes/api.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/routes/api.js b/routes/api.js
index 5fbdcf1..248dfeb 100644
--- a/routes/api.js
+++ b/routes/api.js
@@ -9,7 +9,7 @@ routes.get ('/check', (req, res, next) => {
return res.json({token: true})
})
-routes.get ('/info', (req, res, next) => {
+routes.get ('/info', (req, res, next) => {
if(config.TOKEN !== '')
if(req.headers.auth !== config.TOKEN)
@@ -21,7 +21,7 @@ routes.get ('/info', (req, res, next) => {
})
routes.post ('/upload', (req, res, next) => uploadController.upload(req, res, next))
-routes.get ('/gallery', (req, res, next) => galleryController.list(req, res, next))
-routes.get ('/gallery/test', (req, res, next) => galleryController.test(req, res, next))
+routes.get ('/gallery', (req, res, next) => galleryController.list(req, res, next))
+routes.get ('/gallery/test', (req, res, next) => galleryController.test(req, res, next))
module.exports = routes