mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-19 01:31:34 +00:00
Make all spacings consistent to all other files
This commit is contained in:
parent
d56882e535
commit
b3d883745b
@ -3,13 +3,13 @@ const routes = require('express').Router()
|
|||||||
const uploadController = require('../controllers/uploadController')
|
const uploadController = require('../controllers/uploadController')
|
||||||
const galleryController = require('../controllers/galleryController')
|
const galleryController = require('../controllers/galleryController')
|
||||||
|
|
||||||
routes.get ('/check', (req, res, next) => {
|
routes.get('/check', (req, res, next) => {
|
||||||
if(config.TOKEN === '')
|
if(config.TOKEN === '')
|
||||||
return res.json({token: false})
|
return res.json({token: false})
|
||||||
return res.json({token: true})
|
return res.json({token: true})
|
||||||
})
|
})
|
||||||
|
|
||||||
routes.get ('/info', (req, res, next) => {
|
routes.get('/info', (req, res, next) => {
|
||||||
|
|
||||||
if(config.TOKEN !== '')
|
if(config.TOKEN !== '')
|
||||||
if(req.headers.auth !== 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.post('/upload', (req, res, next) => uploadController.upload(req, res, next))
|
||||||
routes.get ('/gallery', (req, res, next) => galleryController.list(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/test', (req, res, next) => galleryController.test(req, res, next))
|
||||||
|
|
||||||
module.exports = routes
|
module.exports = routes
|
||||||
|
Loading…
Reference in New Issue
Block a user