mirror of https://github.com/zulip/zulip.git
types: Add auto_signup to SAMLIdPConfigDict.
In 3b4f8cc85b
,
we added support to `auto_signup`, but this field was not defined in
`SAMLIdPConfigDict`, causing mypy type error in
`SAMLAuthenBackendTest.test_social_auth_registration_auto_signup`.
Signed-off-by: Zixuan James Li <p359101898@gmail.com>
This commit is contained in:
parent
13ef0b5b04
commit
fdd0d18f8b
|
@ -73,6 +73,7 @@ class SAMLIdPConfigDict(TypedDict, total=False):
|
|||
attr_username: str
|
||||
attr_email: str
|
||||
attr_org_membership: str
|
||||
auto_signup: bool
|
||||
display_name: str
|
||||
display_icon: str
|
||||
limit_to_subdomains: List[str]
|
||||
|
|
Loading…
Reference in New Issue