jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

28 lines
678 B

'use strict';
const deleteCustomPage = require(__dirname+'/../../models/forms/deletecustompage.js')
, dynamicResponse = require(__dirname+'/../../helpers/dynamic.js');
module.exports = async (req, res, next) => {
const errors = [];
if (!req.body.checkedcustompages || req.body.checkedcustompages.length === 0) {
errors.push('Must select at least one custom page to delete');
}
if (errors.length > 0) {
return dynamicResponse(req, res, 400, 'message', {
'title': 'Bad request',
'errors': errors,
'redirect': `/${req.params.board}/manage/custompages.html`
})
}
try {
await deleteCustomPage(req, res, next);
} catch (err) {
return next(err);
}
}