From 8890b4a0da8747943f9205f01e94154e99a749da Mon Sep 17 00:00:00 2001 From: Marcin Kuzminski Date: Fri, 12 May 2017 11:05:39 +0200 Subject: [PATCH] ldap: addedn info about custom certificates option --- rhodecode/authentication/plugins/auth_ldap.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rhodecode/authentication/plugins/auth_ldap.py b/rhodecode/authentication/plugins/auth_ldap.py index 1eaaac6e..848f803c 100644 --- a/rhodecode/authentication/plugins/auth_ldap.py +++ b/rhodecode/authentication/plugins/auth_ldap.py @@ -112,7 +112,9 @@ class LdapSettingsSchema(AuthnPluginSettingsSchemaBase): tls_reqcert = colander.SchemaNode( colander.String(), default=tls_reqcert_choices[0], - description=_('Require Cert over TLS?'), + description=_('Require Cert over TLS?. Self-signed and custom ' + 'certificates can be used when\n `RhodeCode Certificate` ' + 'found in admin > settings > system info page is extended.'), title=_('Certificate Checks'), validator=colander.OneOf(tls_reqcert_choices), widget='select')