itizawa 6 年 前
コミット
ec8dc5cfba
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/server/service/global-notification/index.js

+ 2 - 2
src/server/service/global-notification/index.js

@@ -65,9 +65,9 @@ class GlobalNotificationService {
       case this.Page.GRANT_SPECIFIED:
         return false;
       case this.Page.GRANT_OWNER:
-        return (this.crowi.configManager.getConfig('crowi', 'notification:owner-page:isEnabled') || false);
+        return (this.crowi.configManager.getConfig('notification', 'notification:owner-page:isEnabled') || false);
       case this.Page.GRANT_USER_GROUP:
-        return (this.crowi.configManager.getConfig('crowi', 'notification:group-page:isEnabled') || false);
+        return (this.crowi.configManager.getConfig('notification', 'notification:group-page:isEnabled') || false);
     }
   }