Commit 5295e413 authored by NGPixel's avatar NGPixel

fix: bypass page rule check for global permission check + handle missing page extra field

parent 68d31af7
......@@ -148,6 +148,9 @@ router.get(['/e', '/e/*'], async (req, res, next) => {
await page.$relatedQuery('tags')
page.tags = _.map(page.tags, 'tag')
// Handle missing extra field
page.extra = page.extra || { css: '', js: '' }
// -> Beautify Script CSS
if (!_.isEmpty(page.extra.css)) {
page.extra.css = new CleanCSS({ format: 'beautify' }).minify(page.extra.css).styles
......
......@@ -226,8 +226,13 @@ module.exports = {
return false
}
// Skip if no page rule to check
if (!page) {
return true
}
// Check Page Rules
if (page && user.groups) {
if (user.groups) {
let checkState = {
deny: false,
match: false,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment