mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
Fix missing return None in ZulipRemoteUserBackend.authenticate.
This commit is contained in:
@@ -115,7 +115,7 @@ class ZulipRemoteUserBackend(RemoteUserBackend):
|
|||||||
|
|
||||||
def authenticate(self, remote_user):
|
def authenticate(self, remote_user):
|
||||||
if not remote_user:
|
if not remote_user:
|
||||||
return
|
return None
|
||||||
|
|
||||||
email = remote_user_to_email(remote_user)
|
email = remote_user_to_email(remote_user)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user