auth: Convert DevAuthBackend to use new helper.

This commit is contained in:
Tim Abbott
2017-11-21 12:20:44 -08:00
parent fa8eab303a
commit 37acfb4e90

View File

@@ -540,11 +540,7 @@ class DevAuthBackend(ZulipAuthMixin):
return None
if not dev_auth_enabled(realm):
return None
user_profile = common_get_active_user_by_email(dev_auth_username, return_data=return_data)
if user_profile is None:
return None
assert realm == user_profile.realm
return user_profile
return common_get_active_user(dev_auth_username, realm, return_data=return_data)
class GitHubAuthBackend(SocialAuthMixin, GithubOAuth2):
auth_backend_name = "GitHub"