Kaynağa Gözat

add comment

mizozobu 6 yıl önce
ebeveyn
işleme
679a38db30
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 2 0
      src/server/service/acl.js

+ 2 - 0
src/server/service/acl.js

@@ -29,6 +29,8 @@ class AclService {
 
 
     const guestMode = this.configManager.getConfig('crowi', 'security:restrictGuestMode');
     const guestMode = this.configManager.getConfig('crowi', 'security:restrictGuestMode');
 
 
+    // 'Readonly' => returns true (allow access to guests)
+    // 'Deny', null, undefined, '', ... everything else => returns false (requires login)
     return guestMode === this.labels.SECURITY_RESTRICT_GUEST_MODE_READONLY;
     return guestMode === this.labels.SECURITY_RESTRICT_GUEST_MODE_READONLY;
   }
   }