summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/external_service_settings.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/admin_console/external_service_settings.jsx')
-rw-r--r--webapp/components/admin_console/external_service_settings.jsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/webapp/components/admin_console/external_service_settings.jsx b/webapp/components/admin_console/external_service_settings.jsx
index 59a129fc0..53fdbfb53 100644
--- a/webapp/components/admin_console/external_service_settings.jsx
+++ b/webapp/components/admin_console/external_service_settings.jsx
@@ -20,15 +20,12 @@ export default class ExternalServiceSettings extends AdminSettings {
}
getConfigFromState(config) {
- config.ServiceSettings.SegmentDeveloperKey = this.state.segmentDeveloperKey;
config.ServiceSettings.GoogleDeveloperKey = this.state.googleDeveloperKey;
-
return config;
}
getStateFromConfig(config) {
return {
- segmentDeveloperKey: config.ServiceSettings.SegmentDeveloperKey,
googleDeveloperKey: config.ServiceSettings.GoogleDeveloperKey
};
}
@@ -48,24 +45,6 @@ export default class ExternalServiceSettings extends AdminSettings {
return (
<SettingsGroup>
<TextSetting
- id='segmentDeveloperKey'
- label={
- <FormattedMessage
- id='admin.service.segmentTitle'
- defaultMessage='Segment Write Key:'
- />
- }
- placeholder={Utils.localizeMessage('admin.service.segmentExample', 'Ex "g3fgGOXJAQ43QV7rAh6iwQCkV4cA1Gs"')}
- helpText={
- <FormattedMessage
- id='admin.service.segmentDescription'
- defaultMessage='Segment.com is an online service that can be optionally used to track detailed system statistics. You can obtain a key by signing-up for a free account at Segment.com.'
- />
- }
- value={this.state.segmentDeveloperKey}
- onChange={this.handleChange}
- />
- <TextSetting
id='googleDeveloperKey'
label={
<FormattedMessage