Commit 951728ed2261b5be8957925afdfd0f70fff03eff
1 parent
f655f780
Exists in
master
and in
39 other branches
method not needed
Showing
1 changed file
with
0 additions
and
3 deletions
Show diff stats
src/accounts/auth.py
| ... | ... | @@ -4,6 +4,3 @@ from django_browserid.auth import BrowserIDBackend |
| 4 | 4 | class ColabBrowserIDBackend(BrowserIDBackend): |
| 5 | 5 | def filter_users_by_email(self, email): |
| 6 | 6 | return self.User.objects.filter(emails__address=email) |
| 7 | - | |
| 8 | - def authenticate(self, *args, **kw): | |
| 9 | - return super(ColabBrowserIDBackend, self).authenticate(*args, **kw) | ... | ... |