Browse Source

Make all spacings consistent to all other files

Crawl 7 years ago
parent
commit
b3d883745b
1 changed files with 5 additions and 5 deletions
  1. 5 5
      routes/api.js

+ 5 - 5
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