diff --git a/controllers/uploadController.js b/controllers/uploadController.js index c9959fb..120a52b 100644 --- a/controllers/uploadController.js +++ b/controllers/uploadController.js @@ -26,7 +26,7 @@ uploadsController.upload = function(req, res, next){ if(req.headers.auth !== config.clientToken) return res.status(401).send('not-authorized') - let gallery = req.headers.gallery + let album = req.headers.album upload(req, res, function (err) { if (err) { @@ -45,7 +45,7 @@ uploadsController.upload = function(req, res, next){ type: file.mimetype, size: file.size, ip: req.ip, - galleryid: gallery, + albumid: album, created_at: Math.floor(Date.now() / 1000) }) }) diff --git a/database/db.js b/database/db.js index d641c2e..6c4889b 100644 --- a/database/db.js +++ b/database/db.js @@ -2,7 +2,7 @@ let init = function(db, config){ // Create the tables we need to store galleries and files - db.schema.createTableIfNotExists('gallery', function (table) { + db.schema.createTableIfNotExists('albums', function (table) { table.increments() table.string('name') table.timestamps() @@ -15,7 +15,7 @@ let init = function(db, config){ table.string('type') table.string('size') table.string('ip') - table.integer('galleryid') + table.integer('albumid') table.timestamps() }).then(() => {}) diff --git a/public/js/panel.js b/public/js/panel.js index e008abd..14f6237 100644 --- a/public/js/panel.js +++ b/public/js/panel.js @@ -74,7 +74,7 @@ panel.getUploads = function(){ File - Gallery + Album Date @@ -91,7 +91,7 @@ panel.getUploads = function(){ tr.innerHTML = ` ${item.file} - ${item.gallery} + ${item.album} ${item.date} `; diff --git a/routes/api.js b/routes/api.js index a759bf3..7a4480b 100644 --- a/routes/api.js +++ b/routes/api.js @@ -9,7 +9,6 @@ routes.get ('/check', (req, res, next) => { }) routes.get('/info', (req, res, next) => { - if(config.private === true) if(req.headers.auth !== config.clientToken) return res.status(401).send('not-authorized')