summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2016-02-02 16:19:15 -0800
committer=Corey Hulen <corey@hulen.com>2016-02-02 16:19:15 -0800
commitc4c7b9d310d845b083b9858600f54467bb1df483 (patch)
treef59c715fcf76e23bf90e783a304cfc1d53c35cad
parent15976cc33de8962cdb10a639285de6a5febc4d95 (diff)
downloadchat-c4c7b9d310d845b083b9858600f54467bb1df483.tar.gz
chat-c4c7b9d310d845b083b9858600f54467bb1df483.tar.bz2
chat-c4c7b9d310d845b083b9858600f54467bb1df483.zip
Fixing console
-rw-r--r--config/config.json10
-rw-r--r--web/react/components/admin_console/service_settings.jsx2
2 files changed, 6 insertions, 6 deletions
diff --git a/config/config.json b/config/config.json
index b5f00f669..141560366 100644
--- a/config/config.json
+++ b/config/config.json
@@ -5,12 +5,12 @@
"SegmentDeveloperKey": "",
"GoogleDeveloperKey": "",
"EnableOAuthServiceProvider": false,
- "EnableIncomingWebhooks": true,
- "EnableOutgoingWebhooks": true,
- "EnableCommands": true,
+ "EnableIncomingWebhooks": false,
+ "EnableOutgoingWebhooks": false,
+ "EnableCommands": false,
"EnableOnlyAdminIntegrations": true,
- "EnablePostUsernameOverride": true,
- "EnablePostIconOverride": true,
+ "EnablePostUsernameOverride": false,
+ "EnablePostIconOverride": false,
"EnableTesting": false,
"EnableDeveloper": false,
"EnableSecurityFixAlert": true,
diff --git a/web/react/components/admin_console/service_settings.jsx b/web/react/components/admin_console/service_settings.jsx
index 78e0951cd..2cc68d1ed 100644
--- a/web/react/components/admin_console/service_settings.jsx
+++ b/web/react/components/admin_console/service_settings.jsx
@@ -463,7 +463,7 @@ class ServiceSettings extends React.Component {
<label className='radio-inline'>
<input
type='radio'
- name='EnableCommands'
+ name='EnableOnlyAdminIntegrations'
value='false'
defaultChecked={!this.props.config.ServiceSettings.EnableOnlyAdminIntegrations}
onChange={this.handleChange}