aboutsummaryrefslogtreecommitdiff
path: root/controllers
diff options
context:
space:
mode:
authorPitu <[email protected]>2017-01-17 18:55:35 -0300
committerPitu <[email protected]>2017-01-17 18:55:35 -0300
commitc4b5457891fc05be8d44f036415acadb8ded3cde (patch)
tree11bdc230f928544263c329d839f3610b7a9b369a /controllers
parentMade dashboard not load up login by default (diff)
downloadhost.fuwn.me-c4b5457891fc05be8d44f036415acadb8ded3cde.tar.xz
host.fuwn.me-c4b5457891fc05be8d44f036415acadb8ded3cde.zip
Change from gallery to album
Diffstat (limited to 'controllers')
-rw-r--r--controllers/albumsController.js32
-rw-r--r--controllers/galleryController.js34
2 files changed, 32 insertions, 34 deletions
diff --git a/controllers/albumsController.js b/controllers/albumsController.js
new file mode 100644
index 0000000..7639b3d
--- /dev/null
+++ b/controllers/albumsController.js
@@ -0,0 +1,32 @@
+const config = require('../config.js')
+const db = require('knex')(config.database)
+
+let albumsController = {}
+
+albumsController.list = function(req, res, next){
+
+ if(req.headers.auth !== config.adminToken)
+ return res.status(401).send('not-authorized')
+
+ db.table('albums').select('id', 'name').then((albums) => {
+ return res.json({ albums })
+ })
+}
+
+albumsController.test = function(req, res, next){
+
+ if(req.headers.auth !== config.adminToken)
+ 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('albums').insert(testdata).then(() => {})
+}
+
+module.exports = albumsController \ No newline at end of file
diff --git a/controllers/galleryController.js b/controllers/galleryController.js
deleted file mode 100644
index 0f64086..0000000
--- a/controllers/galleryController.js
+++ /dev/null
@@ -1,34 +0,0 @@
-const config = require('../config.js')
-const db = require('knex')(config.database)
-
-let galleryController = {}
-
-galleryController.list = function(req, res, next){
-
- if(config.private === true)
- if(req.headers.auth !== config.clientToken)
- return res.status(401).send('not-authorized')
-
- db.table('gallery').select('id', 'name').then((galleries) => {
- return res.json({ galleries })
- })
-}
-
-galleryController.test = function(req, res, next){
-
- if(config.private === true)
- if(req.headers.auth !== config.clientToken)
- 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(() => {})
-}
-
-module.exports = galleryController \ No newline at end of file