Files
mattermost/webapp/components/admin_console/email_authentication_settings.jsx
Harrison Healey 689cac535e PLT-2713/PLT-6028 Added System Users list to System Console (#5882)
* 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
2017-03-30 09:46:47 -07:00

103 lines
4.0 KiB
JavaScript

// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import React from 'react';
import AdminSettings from './admin_settings.jsx';
import BooleanSetting from './boolean_setting.jsx';
import {FormattedMessage} from 'react-intl';
import SettingsGroup from './settings_group.jsx';
export default class EmailAuthenticationSettings extends AdminSettings {
constructor(props) {
super(props);
this.getConfigFromState = this.getConfigFromState.bind(this);
this.renderSettings = this.renderSettings.bind(this);
}
getConfigFromState(config) {
config.EmailSettings.EnableSignUpWithEmail = this.state.enableSignUpWithEmail;
config.EmailSettings.EnableSignInWithEmail = this.state.enableSignInWithEmail;
config.EmailSettings.EnableSignInWithUsername = this.state.enableSignInWithUsername;
return config;
}
getStateFromConfig(config) {
return {
enableSignUpWithEmail: config.EmailSettings.EnableSignUpWithEmail,
enableSignInWithEmail: config.EmailSettings.EnableSignInWithEmail,
enableSignInWithUsername: config.EmailSettings.EnableSignInWithUsername
};
}
renderTitle() {
return (
<FormattedMessage
id='admin.authentication.email'
defaultMessage='Email'
/>
);
}
renderSettings() {
return (
<SettingsGroup>
<BooleanSetting
id='enableSignUpWithEmail'
label={
<FormattedMessage
id='admin.email.allowSignupTitle'
defaultMessage='Enable account creation with email: '
/>
}
helpText={
<FormattedMessage
id='admin.email.allowSignupDescription'
defaultMessage='When true, Mattermost allows team creation and account signup using email and password. This value should be false only when you want to limit signup to a single-sign-on service like OAuth or AD/LDAP.'
/>
}
value={this.state.enableSignUpWithEmail}
onChange={this.handleChange}
/>
<BooleanSetting
id='enableSignInWithEmail'
label={
<FormattedMessage
id='admin.email.allowEmailSignInTitle'
defaultMessage='Enable sign-in with email: '
/>
}
helpText={
<FormattedMessage
id='admin.email.allowEmailSignInDescription'
defaultMessage='When true, Mattermost allows users to sign in using their email and password.'
/>
}
value={this.state.enableSignInWithEmail}
onChange={this.handleChange}
/>
<BooleanSetting
id='enableSignInWithUsername'
label={
<FormattedMessage
id='admin.email.allowUsernameSignInTitle'
defaultMessage='Enable sign-in with username: '
/>
}
helpText={
<FormattedMessage
id='admin.email.allowUsernameSignInDescription'
defaultMessage='When true, Mattermost allows users to sign in using their username and password. This setting is typically only used when email verification is disabled.'
/>
}
value={this.state.enableSignInWithUsername}
onChange={this.handleChange}
/>
</SettingsGroup>
);
}
}