diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-03-11 14:20:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 13:20:00 +0000 |
commit | 003cc6910af177fec86ae7f43683d146975c7f4b (patch) | |
tree | 4e88aadc57585ea4e50b7067fed76975f1373714 /synapse/handlers/sso.py | |
parent | Add type hints to `tests/rest`. (#12208) (diff) | |
download | synapse-003cc6910af177fec86ae7f43683d146975c7f4b.tar.xz |
Update the SSO username picker template to comply with SIWA guidelines (#12210)
Fixes https://github.com/matrix-org/synapse/issues/12205
Diffstat (limited to 'synapse/handlers/sso.py')
-rw-r--r-- | synapse/handlers/sso.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/synapse/handlers/sso.py b/synapse/handlers/sso.py index ff5b5169ca..4f02a060d9 100644 --- a/synapse/handlers/sso.py +++ b/synapse/handlers/sso.py @@ -132,6 +132,7 @@ class UserAttributes: # if `None`, the mapper has not picked a userid, and the user should be prompted to # enter one. localpart: Optional[str] + confirm_localpart: bool = False display_name: Optional[str] = None emails: Collection[str] = attr.Factory(list) @@ -561,9 +562,10 @@ class SsoHandler: # Must provide either attributes or session, not both assert (attributes is not None) != (session is not None) - if (attributes and attributes.localpart is None) or ( - session and session.chosen_localpart is None - ): + if ( + attributes + and (attributes.localpart is None or attributes.confirm_localpart is True) + ) or (session and session.chosen_localpart is None): return b"/_synapse/client/pick_username/account_details" elif self._consent_at_registration and not ( session and session.terms_accepted_version |