From b3d883745b306f07415aa3049c1d81a1ce0d59a7 Mon Sep 17 00:00:00 2001 From: Crawl Date: Sun, 15 Jan 2017 18:48:49 +0100 Subject: [PATCH] Make all spacings consistent to all other files --- routes/api.js | 10 +++++----- 1 file 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