* PLT-2713 Added ability for admins to list users not in any team * Updated style of unit test * Split SearchableUserList to give better control over its properties * Added users without any teams to the user store * Added ManageUsers page * Renamed ManageUsers to SystemUsers * Added ability to search by user id in SystemUsers page * Added SystemUsersDropdown * Removed unnecessary injectIntl * Created TeamUtils * Reduced scope of system console heading CSS * Added team filter to TeamAnalytics page * Updated admin console sidebar * Removed unnecessary TODO * Removed unused reference to deleted modal * Fixed system console sidebar not scrolling on first load * Fixed TeamAnalytics page not rendering on first load * Fixed chart.js throwing an error when switching between teams * Changed TeamAnalytics header to show the team's display name * Fixed appearance of TeamAnalytics and SystemUsers on small screen widths * Fixed placement of 'No users found' message * Fixed teams not appearing in SystemUsers on first load * Updated user count text for SystemUsers * Changed search by id fallback to trigger less often * Fixed SystemUsers list items not updating when searching * Fixed localization strings for SystemUsers page
128 строки
5.8 KiB
JavaScript
128 строки
5.8 KiB
JavaScript
// 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 {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 (
|
|
<FormattedMessage
|
|
id='admin.security.session'
|
|
defaultMessage='Sessions'
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderSettings() {
|
|
return (
|
|
<SettingsGroup>
|
|
<TextSetting
|
|
id='sessionLengthWebInDays'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.service.webSessionDays'
|
|
defaultMessage='Session length AD/LDAP and email (days):'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.service.webSessionDaysDesc'
|
|
defaultMessage='The number of days from the last time a user entered their credentials to the expiry of the users session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.'
|
|
/>
|
|
}
|
|
value={this.state.sessionLengthWebInDays}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='sessionLengthMobileInDays'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.service.mobileSessionDays'
|
|
defaultMessage='Session length mobile (days):'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.service.mobileSessionDaysDesc'
|
|
defaultMessage='The number of days from the last time a user entered their credentials to the expiry of the users session. After changing this setting, the new session length will take effect after the next time the user enters their credentials.'
|
|
/>
|
|
}
|
|
value={this.state.sessionLengthMobileInDays}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='sessionLengthSSOInDays'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.service.ssoSessionDays'
|
|
defaultMessage='Session length SSO (days):'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.service.ssoSessionDaysDesc'
|
|
defaultMessage='The number of days from the last time a user entered their credentials to the expiry of the users session. If the authentication method is SAML or GitLab, the user may automatically be logged back in to Mattermost if they are already logged in to SAML or GitLab. After changing this setting, the setting will take effect after the next time the user enters their credentials. '
|
|
/>
|
|
}
|
|
value={this.state.sessionLengthSSOInDays}
|
|
onChange={this.handleChange}
|
|
/>
|
|
<TextSetting
|
|
id='sessionCacheInMinutes'
|
|
label={
|
|
<FormattedMessage
|
|
id='admin.service.sessionCache'
|
|
defaultMessage='Session Cache (minutes):'
|
|
/>
|
|
}
|
|
placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
|
|
helpText={
|
|
<FormattedMessage
|
|
id='admin.service.sessionCacheDesc'
|
|
defaultMessage='The number of minutes to cache a session in memory.'
|
|
/>
|
|
}
|
|
value={this.state.sessionCacheInMinutes}
|
|
onChange={this.handleChange}
|
|
/>
|
|
</SettingsGroup>
|
|
);
|
|
}
|
|
}
|