From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- .../admin_console/compliance_settings.jsx | 126 --------------------- 1 file changed, 126 deletions(-) delete mode 100644 webapp/components/admin_console/compliance_settings.jsx (limited to 'webapp/components/admin_console/compliance_settings.jsx') diff --git a/webapp/components/admin_console/compliance_settings.jsx b/webapp/components/admin_console/compliance_settings.jsx deleted file mode 100644 index 5521c6e39..000000000 --- a/webapp/components/admin_console/compliance_settings.jsx +++ /dev/null @@ -1,126 +0,0 @@ -// Copyright (c) 2015-present 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 {FormattedHTMLMessage, FormattedMessage} from 'react-intl'; -import SettingsGroup from './settings_group.jsx'; -import TextSetting from './text_setting.jsx'; - -export default class ComplianceSettings extends AdminSettings { - constructor(props) { - super(props); - - this.getConfigFromState = this.getConfigFromState.bind(this); - - this.renderSettings = this.renderSettings.bind(this); - } - - getConfigFromState(config) { - config.ComplianceSettings.Enable = this.state.enable; - config.ComplianceSettings.Directory = this.state.directory; - config.ComplianceSettings.EnableDaily = this.state.enableDaily; - - return config; - } - - getStateFromConfig(config) { - return { - enable: config.ComplianceSettings.Enable, - directory: config.ComplianceSettings.Directory, - enableDaily: config.ComplianceSettings.EnableDaily - }; - } - - renderTitle() { - return ( - - ); - } - - renderSettings() { - const licenseEnabled = global.window.mm_license.IsLicensed === 'true' && global.window.mm_license.Compliance === 'true'; - - let bannerContent; - if (!licenseEnabled) { - bannerContent = ( -
-
- -
-
- ); - } - - return ( - - {bannerContent} - - } - helpText={ - - } - value={this.state.enable} - onChange={this.handleChange} - disabled={!licenseEnabled} - /> - - } - placeholder={Utils.localizeMessage('admin.sql.maxOpenExample', 'Ex "10"')} - helpText={ - - } - value={this.state.directory} - onChange={this.handleChange} - disabled={!licenseEnabled || !this.state.enable} - /> - - } - helpText={ - - } - value={this.state.enableDaily} - onChange={this.handleChange} - disabled={!licenseEnabled || !this.state.enable} - /> - - ); - } -} -- cgit v1.2.3-1-g7c22