Browse Source

fix: code linting auth.js

pull/1452/head
NGPixel 4 years ago
parent
commit
1b4d8142f3
1 changed files with 1 additions and 1 deletions
  1. 2
      server/core/auth.js

2
server/core/auth.js

@ -173,7 +173,7 @@ module.exports = {
user.groups.forEach(grp => {
const grpId = _.isObject(grp) ? _.get(grp, 'id', 0) : grp
_.get(WIKI.auth.groups, `${grpId}.pageRules`, []).forEach(rule => {
if(_.intersection(rule.roles, permissions).length > 0) {
if (_.intersection(rule.roles, permissions).length > 0) {
switch (rule.match) {
case 'START':
if (_.startsWith(`/${page.path}`, `/${rule.path}`)) {

Loading…
Cancel
Save