diff options
author | Richard van der Hoff <richard@matrix.org> | 2021-02-01 18:46:12 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2021-02-01 18:46:12 +0000 |
commit | 5963426b957d9f312817e0f3e4f44b753f8e2398 (patch) | |
tree | 217afd1d90cc7c0cb217158e5849dc011fbea5c4 /synapse/handlers/auth.py | |
parent | Refactor email summary generation. (#9260) (diff) | |
parent | make primary button not wider than viewport (diff) | |
download | synapse-5963426b957d9f312817e0f3e4f44b753f8e2398.tar.xz |
Merge branch 'social_login' into develop
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 143494ae99..a19c556437 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -1378,7 +1378,9 @@ class AuthHandler(BaseHandler): ) return self._sso_auth_confirm_template.render( - description=session.description, redirect_url=redirect_url, + description=session.description, + redirect_url=redirect_url, + idp=sso_auth_provider, ) async def complete_sso_login( |