1
0
mirror of https://github.com/django/django.git synced 2025-06-27 06:19:17 +00:00

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
This commit is contained in:
Joseph Kocherhans 2006-05-10 04:29:21 +00:00
parent 0cd180cf76
commit 63ffc57e58

View File

@ -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',)