From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- .../components/admin_console/session_settings.jsx | 127 --------------------- 1 file changed, 127 deletions(-) delete mode 100644 webapp/components/admin_console/session_settings.jsx (limited to 'webapp/components/admin_console/session_settings.jsx') diff --git a/webapp/components/admin_console/session_settings.jsx b/webapp/components/admin_console/session_settings.jsx deleted file mode 100644 index a36126789..000000000 --- a/webapp/components/admin_console/session_settings.jsx +++ /dev/null @@ -1,127 +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 {FormattedMessage} from 'react-intl'; -import SettingsGroup from './settings_group.jsx'; -import TextSetting from './text_setting.jsx'; - -export default class SessionSettings extends AdminSettings { - constructor(props) { - super(props); - - this.getConfigFromState = this.getConfigFromState.bind(this); - - this.renderSettings = this.renderSettings.bind(this); - } - - getConfigFromState(config) { - config.ServiceSettings.SessionLengthWebInDays = this.parseIntNonZero(this.state.sessionLengthWebInDays); - config.ServiceSettings.SessionLengthMobileInDays = this.parseIntNonZero(this.state.sessionLengthMobileInDays); - config.ServiceSettings.SessionLengthSSOInDays = this.parseIntNonZero(this.state.sessionLengthSSOInDays); - config.ServiceSettings.SessionCacheInMinutes = this.parseIntNonZero(this.state.sessionCacheInMinutes); - - return config; - } - - getStateFromConfig(config) { - return { - sessionLengthWebInDays: config.ServiceSettings.SessionLengthWebInDays, - sessionLengthMobileInDays: config.ServiceSettings.SessionLengthMobileInDays, - sessionLengthSSOInDays: config.ServiceSettings.SessionLengthSSOInDays, - sessionCacheInMinutes: config.ServiceSettings.SessionCacheInMinutes - }; - } - - renderTitle() { - return ( - - ); - } - - renderSettings() { - return ( - - - } - placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')} - helpText={ - - } - value={this.state.sessionLengthWebInDays} - onChange={this.handleChange} - /> - - } - placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')} - helpText={ - - } - value={this.state.sessionLengthMobileInDays} - onChange={this.handleChange} - /> - - } - placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')} - helpText={ - - } - value={this.state.sessionLengthSSOInDays} - onChange={this.handleChange} - /> - - } - placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')} - helpText={ - - } - value={this.state.sessionCacheInMinutes} - onChange={this.handleChange} - /> - - ); - } -} -- cgit v1.2.3-1-g7c22