summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-09-06 09:19:58 -0300
committerJoram Wilander <jwawilander@gmail.com>2016-09-06 08:19:58 -0400
commit4bd5935bd825eaa92b9d534d9554b762c38e6250 (patch)
treee6c9f215b36a9817d0933c6055941750ca18b0cc /webapp/components/admin_console
parent9d11dd437faf294a735f52f35e90779353f35293 (diff)
downloadchat-4bd5935bd825eaa92b9d534d9554b762c38e6250.tar.gz
chat-4bd5935bd825eaa92b9d534d9554b762c38e6250.tar.bz2
chat-4bd5935bd825eaa92b9d534d9554b762c38e6250.zip
PLT-4041 Make SAML FirstName and LastName optional (#3951)
Diffstat (limited to 'webapp/components/admin_console')
-rw-r--r--webapp/components/admin_console/saml_settings.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/admin_console/saml_settings.jsx b/webapp/components/admin_console/saml_settings.jsx
index 9fb78f472..fe8acaf16 100644
--- a/webapp/components/admin_console/saml_settings.jsx
+++ b/webapp/components/admin_console/saml_settings.jsx
@@ -455,7 +455,7 @@ export default class SamlSettings extends AdminSettings {
helpText={
<FormattedMessage
id='admin.saml.firstnameAttrDesc'
- defaultMessage='The attribute in the SAML Assertion that will be used to populate the first name of users in Mattermost.'
+ defaultMessage='(Optional) The attribute in the SAML Assertion that will be used to populate the first name of users in Mattermost.'
/>
}
value={this.state.firstNameAttribute}
@@ -474,7 +474,7 @@ export default class SamlSettings extends AdminSettings {
helpText={
<FormattedMessage
id='admin.saml.lastnameAttrDesc'
- defaultMessage='The attribute in the SAML Assertion that will be used to populate the last name of users in Mattermost.'
+ defaultMessage='(Optional) The attribute in the SAML Assertion that will be used to populate the last name of users in Mattermost.'
/>
}
value={this.state.lastNameAttribute}