mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
PLT-5212 Add password setting text for google and office365 (#5029)
This commit is contained in:
committed by
George Goldberg
parent
0cba48d155
commit
99493bc5fa
@@ -427,6 +427,34 @@ export default class SecurityTab extends React.Component {
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
} else if (this.props.user.auth_service === Constants.GOOGLE_SERVICE) {
|
||||
inputs.push(
|
||||
<div
|
||||
key='oauthEmailInfo'
|
||||
className='form-group'
|
||||
>
|
||||
<div className='setting-list__hint'>
|
||||
<FormattedMessage
|
||||
id='user.settings.security.passwordGoogleCantUpdate'
|
||||
defaultMessage='Login occurs through Google Apps. Password cannot be updated.'
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
} else if (this.props.user.auth_service === Constants.OFFICE365_SERVICE) {
|
||||
inputs.push(
|
||||
<div
|
||||
key='oauthEmailInfo'
|
||||
className='form-group'
|
||||
>
|
||||
<div className='setting-list__hint'>
|
||||
<FormattedMessage
|
||||
id='user.settings.security.passwordOffice365CantUpdate'
|
||||
defaultMessage='Login occurs through Office 365. Password cannot be updated.'
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
updateSectionStatus = function resetSection(e) {
|
||||
@@ -504,6 +532,20 @@ export default class SecurityTab extends React.Component {
|
||||
defaultMessage='Login done through SAML'
|
||||
/>
|
||||
);
|
||||
} else if (this.props.user.auth_service === Constants.GOOGLE_SERVICE) {
|
||||
describe = (
|
||||
<FormattedMessage
|
||||
id='user.settings.security.loginGoogle'
|
||||
defaultMessage='Login done through Google Apps'
|
||||
/>
|
||||
);
|
||||
} else if (this.props.user.auth_service === Constants.OFFICE365_SERVICE) {
|
||||
describe = (
|
||||
<FormattedMessage
|
||||
id='user.settings.security.loginOffice365'
|
||||
defaultMessage='Login done through Office 365'
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
updateSectionStatus = function updateSection() {
|
||||
|
||||
@@ -2132,6 +2132,8 @@
|
||||
"user.settings.security.lastUpdated": "Last updated {date} at {time}",
|
||||
"user.settings.security.ldap": "AD/LDAP",
|
||||
"user.settings.security.loginGitlab": "Login done through GitLab",
|
||||
"user.settings.security.loginGoogle": "Login done through Google Apps",
|
||||
"user.settings.security.loginOffice365": "Login done through Office 365",
|
||||
"user.settings.security.loginLdap": "Login done through AD/LDAP",
|
||||
"user.settings.security.loginSaml": "Login done through SAML",
|
||||
"user.settings.security.logoutActiveSessions": "View and Logout of Active Sessions",
|
||||
@@ -2161,6 +2163,8 @@
|
||||
"user.settings.security.passwordErrorUppercaseNumberSymbol": "Your password must contain at least {min} characters made up of at least one uppercase letter, at least one number, and at least one symbol (e.g. \"~!@#$%^&*()\").",
|
||||
"user.settings.security.passwordErrorUppercaseSymbol": "Your password must contain at least {min} characters made up of at least one uppercase letter and at least one symbol (e.g. \"~!@#$%^&*()\").",
|
||||
"user.settings.security.passwordGitlabCantUpdate": "Login occurs through GitLab. Password cannot be updated.",
|
||||
"user.settings.security.passwordGoogleCantUpdate": "Login occurs through Google Apps. Password cannot be updated.",
|
||||
"user.settings.security.passwordOffice365CantUpdate": "Login occurs through Office 365. Password cannot be updated.",
|
||||
"user.settings.security.passwordLdapCantUpdate": "Login occurs through AD/LDAP. Password cannot be updated.",
|
||||
"user.settings.security.passwordMatchError": "The new passwords you entered do not match.",
|
||||
"user.settings.security.passwordMinLength": "Invalid minimum length, cannot show preview.",
|
||||
|
||||
Reference in New Issue
Block a user