Django

Code

Changeset 6791

Show
Ignore:
Timestamp:
12/01/07 11:27:44 (10 months ago)
Author:
ubernostrum
Message:

Fixed #6079: Added AUTHENTICATION_BACKENDS to docs/settings.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/settings.txt

    r6772 r6791  
    225225``CommonMiddleware`` is installed (see the `middleware docs`_). See also 
    226226``PREPEND_WWW``. 
     227 
     228AUTHENTICATION_BACKENDS 
     229----------------------- 
     230 
     231Default: ``('django.contrib.auth.backends.ModelBackend',)`` 
     232 
     233A tuple of authentication backend classes (as strings) to use when 
     234attempting to authenticate a user. See the `authentication backends 
     235documentation`_ for details. 
     236 
     237.. _authentication backends documentation: ../authentication/#other-authentication-sources 
    227238 
    228239CACHE_BACKEND