diff options
| author | kanadeko <[email protected]> | 2017-01-13 18:36:54 -0300 |
|---|---|---|
| committer | kanadeko <[email protected]> | 2017-01-13 18:36:54 -0300 |
| commit | dec004cc0a5b6de9c19af247bba3ee0d42adc878 (patch) | |
| tree | 899531f14172fd7453e75fb70c048903d397f230 /controllers/galleryController.js | |
| parent | Gallery WIP (diff) | |
| download | host.fuwn.me-dec004cc0a5b6de9c19af247bba3ee0d42adc878.tar.xz host.fuwn.me-dec004cc0a5b6de9c19af247bba3ee0d42adc878.zip | |
Gallery WIP
Diffstat (limited to 'controllers/galleryController.js')
| -rw-r--r-- | controllers/galleryController.js | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/controllers/galleryController.js b/controllers/galleryController.js index a499af5..4347e7a 100644 --- a/controllers/galleryController.js +++ b/controllers/galleryController.js @@ -4,10 +4,25 @@ const db = require('knex')(config.database) let galleryController = {} 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) => { res.json({ data }) }) +} + +galleryController.test = function(req, res, next){ + if(!config.privacy.public) + if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!') + + let testdata = [ + {name: 'Test 1'}, + {name: 'Test 2'}, + {name: 'Test 3'}, + {name: 'Test 4'}, + {name: 'Test 5'} + ] + + db.table('gallery').insert(testdata).then(() => {}) }
\ No newline at end of file |