summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2006-05-10 04:29:21 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2006-05-10 04:29:21 +0000
commit63ffc57e5837182e383521dbf9d50915923dc33f (patch)
tree24fe26fc7ff4e987fad5914c833215040416d134
parent0cd180cf76faf5f2c2cd41ad0992fc4a9daf42b9 (diff)
multi-auth: Added default AUTHENTICATION_BACKENDS setting.
git-svn-id: http://code.djangoproject.com/svn/django/branches/multi-auth@2885 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/global_settings.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py
index cfa174287b..edda831419 100644
--- a/django/conf/global_settings.py
+++ b/django/conf/global_settings.py
@@ -265,3 +265,9 @@ COMMENTS_FIRST_FEW = 0
# A tuple of IP addresses that have been banned from participating in various
# Django-powered features.
BANNED_IPS = ()
+
+##################
+# AUTHENTICATION #
+##################
+
+AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',)