mirror of https://github.com/zulip/zulip.git
social_backends: If no icon is to be displayed, set display_icon to None.
This commit is contained in:
parent
c228f7ebcb
commit
b05a0d0177
|
@ -59,7 +59,7 @@ Fetch global settings for a Zulip server.
|
|||
google/github/SAML) enabled for this organization. Each dictionary
|
||||
specifies the name and icon that should be displayed on the login
|
||||
buttons (`display_name` and `display_icon`, where `display_icon` can
|
||||
be the empty string, if no icon is to be displayed), the URLs that
|
||||
be `null`, if no icon is to be displayed), the URLs that
|
||||
should be accessed to initiate login/signup using the method
|
||||
(`login_url` and `signup_url`) and `name`, which is a unique,
|
||||
stable, machine-readable name for the authentication method. The
|
||||
|
|
|
@ -2240,7 +2240,7 @@ paths:
|
|||
{
|
||||
"name": "saml:idp_name",
|
||||
"display_name": "SAML",
|
||||
"display_icon": "",
|
||||
"display_icon": null,
|
||||
"login_url": "/accounts/login/social/saml/idp_name",
|
||||
"signup_url": "/accounts/register/social/saml/idp_name"
|
||||
},
|
||||
|
|
|
@ -1143,7 +1143,7 @@ class SAMLAuthBackend(SocialAuthMixin, SAMLAuth):
|
|||
# SAML buttons at the top.
|
||||
sort_order = 9999
|
||||
# There's no common default logo for SAML authentication.
|
||||
display_icon = ""
|
||||
display_icon = None
|
||||
|
||||
# The full_name provided by the IdP is very likely the standard
|
||||
# employee directory name for the user, and thus what they and
|
||||
|
@ -1280,13 +1280,12 @@ class SAMLAuthBackend(SocialAuthMixin, SAMLAuth):
|
|||
SocialBackendDictT = TypedDict('SocialBackendDictT', {
|
||||
'name': str,
|
||||
'display_name': str,
|
||||
'display_icon': str,
|
||||
'display_icon': Optional[str],
|
||||
'login_url': str,
|
||||
'signup_url': str,
|
||||
})
|
||||
|
||||
def create_standard_social_backend_dict(social_backend: SocialAuthMixin) -> SocialBackendDictT:
|
||||
assert social_backend.display_icon is not None
|
||||
return dict(
|
||||
name=social_backend.name,
|
||||
display_name=social_backend.auth_backend_name,
|
||||
|
|
|
@ -230,8 +230,8 @@ SOCIAL_AUTH_SAML_ENABLED_IDPS = {
|
|||
"display_name": "SAML",
|
||||
# Path to a square image file containing a logo to appear at
|
||||
# the left end of the login/register buttons for this IDP.
|
||||
# The default of "" results in a text-only button.
|
||||
"display_icon": "",
|
||||
# The default of None results in a text-only button.
|
||||
# "display_icon": "/path/to/icon.png",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -215,6 +215,6 @@ SOCIAL_AUTH_SAML_ENABLED_IDPS = {
|
|||
"attr_username": "email",
|
||||
"attr_email": "email",
|
||||
"display_name": "Test IdP",
|
||||
"display_icon": "/static/images/landing-page/logos/saml-icon.png",
|
||||
"display_icon": None,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue