use default 403 message for accounts

This commit is contained in:
psychobunny
2014-10-08 00:06:43 -04:00
parent 7bd49a96b2
commit 298625225a

View File

@@ -37,9 +37,7 @@ function userNotAllowed(res) {
if (res.locals.isAPI) { if (res.locals.isAPI) {
res.status(403).json('not-allowed'); res.status(403).json('not-allowed');
} else { } else {
res.render('403', { res.render('403');
error: 'Not allowed.'
});
} }
} }