fix: view page as unauthorized user

pull/835/head
Nicolas Giard 6 years ago committed by GitHub
parent 8970e70333
commit 0d2aa56b79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -136,10 +136,8 @@ router.get('/*', async (req, res, next) => {
const pageArgs = pageHelper.parsePath(req.path)
if (!WIKI.auth.checkAccess(req.user, ['read:pages'], pageArgs)) {
if (pageArgs.path === 'home') {
_.set(res.locals, 'pageMeta.title', 'Unauthorized')
return res.render('unauthorized', { action: 'view' })
}
_.set(res.locals, 'pageMeta.title', 'Unauthorized')
return res.render('unauthorized', { action: 'view' })
}
const page = await WIKI.models.pages.getPage({

Loading…
Cancel
Save