Browse Source

[slack] Change default config to false

Harshg999 4 years ago
parent
commit
68e56fff9a

+ 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),
   )
 )