diff options
Diffstat (limited to 'drupal_auth/backend.py')
-rw-r--r-- | drupal_auth/backend.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drupal_auth/backend.py b/drupal_auth/backend.py deleted file mode 100644 index e85b8b2..0000000 --- a/drupal_auth/backend.py +++ /dev/null @@ -1,8 +0,0 @@ -from django.contrib.auth.models import User - -from website.models import Test - -class DrupalAuthBackend: - def authenticate(self, username=None, password=None): - user = User.objects.get(username='admin') - return user |