diff options
| author | Crawl <[email protected]> | 2017-01-15 18:48:49 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-15 18:48:49 +0100 |
| commit | b3d883745b306f07415aa3049c1d81a1ce0d59a7 (patch) | |
| tree | 70a8a464a8ff666602d8e1e43d46272fb25d6da2 | |
| parent | spacing is for nerds (diff) | |
| download | host.fuwn.me-b3d883745b306f07415aa3049c1d81a1ce0d59a7.tar.xz host.fuwn.me-b3d883745b306f07415aa3049c1d81a1ce0d59a7.zip | |
Make all spacings consistent to all other files
| -rw-r--r-- | routes/api.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/routes/api.js b/routes/api.js index 248dfeb..1d51df9 100644 --- a/routes/api.js +++ b/routes/api.js @@ -3,13 +3,13 @@ const routes = require('express').Router() const uploadController = require('../controllers/uploadController') const galleryController = require('../controllers/galleryController') -routes.get ('/check', (req, res, next) => { +routes.get('/check', (req, res, next) => { if(config.TOKEN === '') return res.json({token: false}) 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) @@ -20,8 +20,8 @@ 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.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)) module.exports = routes |