mirror of
https://github.com/ansible/awx.git
synced 2026-05-06 17:07:36 -02:30
Merge pull request #116 from chrismeyersfsu/fix-6973
make specific saml fields required
This commit is contained in:
@@ -970,13 +970,7 @@ register(
|
|||||||
register(
|
register(
|
||||||
'SOCIAL_AUTH_SAML_ORG_INFO',
|
'SOCIAL_AUTH_SAML_ORG_INFO',
|
||||||
field_class=fields.SAMLOrgInfoField,
|
field_class=fields.SAMLOrgInfoField,
|
||||||
default=collections.OrderedDict([
|
required=True,
|
||||||
('en-US', collections.OrderedDict([
|
|
||||||
('name', 'example'),
|
|
||||||
('displayname', 'Example'),
|
|
||||||
('url', 'http://www.example.com'),
|
|
||||||
])),
|
|
||||||
]),
|
|
||||||
label=_('SAML Service Provider Organization Info'),
|
label=_('SAML Service Provider Organization Info'),
|
||||||
help_text=_('Configure this setting with information about your app.'),
|
help_text=_('Configure this setting with information about your app.'),
|
||||||
category=_('SAML'),
|
category=_('SAML'),
|
||||||
@@ -995,10 +989,7 @@ register(
|
|||||||
'SOCIAL_AUTH_SAML_TECHNICAL_CONTACT',
|
'SOCIAL_AUTH_SAML_TECHNICAL_CONTACT',
|
||||||
field_class=fields.SAMLContactField,
|
field_class=fields.SAMLContactField,
|
||||||
allow_blank=True,
|
allow_blank=True,
|
||||||
default=collections.OrderedDict([
|
required=True,
|
||||||
('givenName', 'Technical Contact'),
|
|
||||||
('emailAddress', 'techsup@example.com'),
|
|
||||||
]),
|
|
||||||
label=_('SAML Service Provider Technical Contact'),
|
label=_('SAML Service Provider Technical Contact'),
|
||||||
help_text=_('Configure this setting with your contact information.'),
|
help_text=_('Configure this setting with your contact information.'),
|
||||||
category=_('SAML'),
|
category=_('SAML'),
|
||||||
@@ -1014,10 +1005,7 @@ register(
|
|||||||
'SOCIAL_AUTH_SAML_SUPPORT_CONTACT',
|
'SOCIAL_AUTH_SAML_SUPPORT_CONTACT',
|
||||||
field_class=fields.SAMLContactField,
|
field_class=fields.SAMLContactField,
|
||||||
allow_blank=True,
|
allow_blank=True,
|
||||||
default=collections.OrderedDict([
|
required=True,
|
||||||
('givenName', 'Support Contact'),
|
|
||||||
('emailAddress', 'support@example.com'),
|
|
||||||
]),
|
|
||||||
label=_('SAML Service Provider Support Contact'),
|
label=_('SAML Service Provider Support Contact'),
|
||||||
help_text=_('Configure this setting with your contact information.'),
|
help_text=_('Configure this setting with your contact information.'),
|
||||||
category=_('SAML'),
|
category=_('SAML'),
|
||||||
|
|||||||
Reference in New Issue
Block a user