Преглед на файлове

[slack] Change default config to false

Harshg999 преди 5 години
родител
ревизия
68e56fff9a
променени са 3 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 1 1
      desktop/conf.dist/hue.ini
  2. 1 1
      desktop/conf/pseudo-distributed.ini.tmpl
  3. 1 1
      desktop/core/src/desktop/conf.py

+ 1 - 1
desktop/conf.dist/hue.ini

@@ -819,7 +819,7 @@
   [[slack]]
 
    # Turns on Slack application API endpoints
-   ## is_enabled=True
+   ## is_enabled=false
 
 
   # Configuration options for the request Tracing

+ 1 - 1
desktop/conf/pseudo-distributed.ini.tmpl

@@ -821,7 +821,7 @@
   [[slack]]
 
    # Turns on Slack application API endpoints
-   ## is_enabled=True
+   ## is_enabled=false
 
 
   # Configuration options for the request Tracing

+ 1 - 1
desktop/core/src/desktop/conf.py

@@ -710,7 +710,7 @@ SLACK = ConfigSection(
     IS_ENABLED=Config(
       key='is_enabled',
       help=_('Turns on Slack application API endpoints'),
-      default=True,
+      default=False,
       type=coerce_bool),
   )
 )