Skip to content
Snippets Groups Projects
Commit 56e2a433 authored by Jurek's avatar Jurek
Browse files

Fix auth handler #2678

parent 552f123b
No related branches found
No related tags found
No related merge requests found
...@@ -551,7 +551,7 @@ class AuthHandler(BaseHandler): ...@@ -551,7 +551,7 @@ class AuthHandler(BaseHandler):
qualified_user_id, password, qualified_user_id, password,
) )
if is_valid: if is_valid:
defer.returnValue(qualified_user_id) defer.returnValue((qualified_user_id, None))
if (not hasattr(provider, "get_supported_login_types") if (not hasattr(provider, "get_supported_login_types")
or not hasattr(provider, "check_auth")): or not hasattr(provider, "check_auth")):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment