|
@@ -4,8 +4,9 @@ const db = require('knex')(config.database)
|
|
let galleryController = {}
|
|
let galleryController = {}
|
|
|
|
|
|
galleryController.list = function(req, res, next){
|
|
galleryController.list = function(req, res, next){
|
|
- //if(!config.privacy.public)
|
|
|
|
- //if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')
|
|
|
|
|
|
+
|
|
|
|
+ if(!config.privacy.public)
|
|
|
|
+ if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')
|
|
|
|
|
|
db.table('gallery').select('id', 'name').then((data) => {
|
|
db.table('gallery').select('id', 'name').then((data) => {
|
|
res.json({ data })
|
|
res.json({ data })
|
|
@@ -13,8 +14,9 @@ galleryController.list = function(req, res, next){
|
|
}
|
|
}
|
|
|
|
|
|
galleryController.test = function(req, res, next){
|
|
galleryController.test = function(req, res, next){
|
|
- //if(!config.privacy.public)
|
|
|
|
- //if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')
|
|
|
|
|
|
+
|
|
|
|
+ if(!config.privacy.public)
|
|
|
|
+ if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')
|
|
|
|
|
|
let testdata = [
|
|
let testdata = [
|
|
{name: 'Test 1'},
|
|
{name: 'Test 1'},
|