// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import * as Utils from 'utils/utils.jsx'; import AdminSettings from './admin_settings.jsx'; import BooleanSetting from './boolean_setting.jsx'; import {FormattedMessage} from 'react-intl'; import SettingsGroup from './settings_group.jsx'; import TextSetting from './text_setting.jsx'; export default class ConnectionSettings extends AdminSettings { constructor(props) { super(props); this.getConfigFromState = this.getConfigFromState.bind(this); this.renderSettings = this.renderSettings.bind(this); } getConfigFromState(config) { config.ServiceSettings.AllowCorsFrom = this.state.allowCorsFrom; config.ServiceSettings.EnableInsecureOutgoingConnections = this.state.enableInsecureOutgoingConnections; return config; } getStateFromConfig(config) { return { allowCorsFrom: config.ServiceSettings.AllowCorsFrom, enableInsecureOutgoingConnections: config.ServiceSettings.EnableInsecureOutgoingConnections }; } renderTitle() { return ( ); } renderSettings() { return ( } placeholder={Utils.localizeMessage('admin.service.corsEx', 'http://example.com')} helpText={ } value={this.state.allowCorsFrom} onChange={this.handleChange} /> } helpText={ } value={this.state.enableInsecureOutgoingConnections} onChange={this.handleChange} /> ); } }