# HG changeset patch # User Marcin Kuzminski # Date 2017-05-12 09:05:39 # Node ID 739db449213b66af5ebe34a879669530c9a530ee # Parent 71b6a6733614b35e2ac34d20ae3c735e768e151e ldap: addedn info about custom certificates option diff --git a/rhodecode/authentication/plugins/auth_ldap.py b/rhodecode/authentication/plugins/auth_ldap.py --- a/rhodecode/authentication/plugins/auth_ldap.py +++ b/rhodecode/authentication/plugins/auth_ldap.py @@ -112,7 +112,9 @@ class LdapSettingsSchema(AuthnPluginSett 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')