1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Allow SAML entity ID to be any string, not required to be a URL.

This commit is contained in:
Chris Church 2016-12-06 12:56:25 -05:00
parent 4295ab3e4a
commit 417d7c29ee

View File

@ -924,13 +924,12 @@ register(
register(
'SOCIAL_AUTH_SAML_SP_ENTITY_ID',
field_class=fields.URLField,
schemes=('http', 'https'),
field_class=fields.CharField,
allow_blank=True,
default='',
label=_('SAML Service Provider Entity ID'),
help_text=_('Set to a URL for a domain name you own (does not need to be a '
'valid URL; only used as a unique ID).'),
help_text=_('The application-defined unique identifier used as the '
'audience of the SAML service provider (SP) configuration.'),
category=_('SAML'),
category_slug='saml',
feature_required='enterprise_auth',