mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 18:07:36 -02:30
Allow SAML entity ID to be any string, not required to be a URL.
This commit is contained in:
@@ -924,13 +924,12 @@ register(
|
|||||||
|
|
||||||
register(
|
register(
|
||||||
'SOCIAL_AUTH_SAML_SP_ENTITY_ID',
|
'SOCIAL_AUTH_SAML_SP_ENTITY_ID',
|
||||||
field_class=fields.URLField,
|
field_class=fields.CharField,
|
||||||
schemes=('http', 'https'),
|
|
||||||
allow_blank=True,
|
allow_blank=True,
|
||||||
default='',
|
default='',
|
||||||
label=_('SAML Service Provider Entity ID'),
|
label=_('SAML Service Provider Entity ID'),
|
||||||
help_text=_('Set to a URL for a domain name you own (does not need to be a '
|
help_text=_('The application-defined unique identifier used as the '
|
||||||
'valid URL; only used as a unique ID).'),
|
'audience of the SAML service provider (SP) configuration.'),
|
||||||
category=_('SAML'),
|
category=_('SAML'),
|
||||||
category_slug='saml',
|
category_slug='saml',
|
||||||
feature_required='enterprise_auth',
|
feature_required='enterprise_auth',
|
||||||
|
|||||||
Reference in New Issue
Block a user