Add exception handler to all controllers.

This commit is contained in:
rainbownapkin 2024-11-17 18:44:00 -05:00
parent cf55be21eb
commit 1de507b7cb
7 changed files with 42 additions and 34 deletions

View file

@ -16,6 +16,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
//Config
const config = require('../../config.json');
//local imports
const {exceptionHandler} = require('../utils/loggerUtils.js');
const channelModel = require('../schemas/channelSchema');
//root index functions
@ -30,7 +33,6 @@ module.exports.get = async function(req, res){
return res.render('channelSettings', {instance: config.instanceName, user: req.session.user, channel});
}catch(err){
res.status(500);
res.send(err.message);
return exceptionHandler(res, err);
}
}