Browse Source

django 1.11

Élie Bouttier 8 years ago
parent
commit
7eaddffbf4
3 changed files with 7 additions and 3 deletions
  1. 3 1
      accounts/backends.py
  2. 3 1
      adhesions/backends.py
  3. 1 1
      requirements.txt

+ 3 - 1
accounts/backends.py

@@ -3,7 +3,9 @@ from django.contrib.auth.backends import ModelBackend
 
 
 class EmailBackend(ModelBackend):
-    def authenticate(self, username, password=None, **kwargs):
+    def authenticate(self, request, username=None, password=None, **kwargs):
+        if not username:
+            return None
         UserModel = get_user_model()
         try:
             user = UserModel._default_manager.get(email__iexact=username)

+ 3 - 1
adhesions/backends.py

@@ -6,7 +6,9 @@ from .models import Adhesion
 
 
 class AdhesionBackend(ModelBackend):
-    def authenticate(self, username, password=None, **kwargs):
+    def authenticate(self, username=None, password=None):
+        if not username:
+            return None
         if str(username).lower().startswith("adt"):
             username = str(username)[3:]
         try:

+ 1 - 1
requirements.txt

@@ -1,3 +1,3 @@
-django<1.11
+django<1.12
 django-bootstrap3
 django_select2