diff options
| author | James Bennett <ubernostrum@gmail.com> | 2007-12-01 17:27:44 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2007-12-01 17:27:44 +0000 |
| commit | 0aa26dacac75a71d0b2beb46ab1bd73fc4c341ed (patch) | |
| tree | 5db5799450bcf407eeebd1b251ed6b34f5448e6f /docs | |
| parent | 56b1b7d30b4342488ffe05fa5d8464562586af2b (diff) | |
Fixed #6079: Added AUTHENTICATION_BACKENDS to docs/settings.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6791 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/settings.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/settings.txt b/docs/settings.txt index 1700c248c0..45ba86e608 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -225,6 +225,17 @@ Whether to append trailing slashes to URLs. This is only used if ``CommonMiddleware`` is installed (see the `middleware docs`_). See also ``PREPEND_WWW``. +AUTHENTICATION_BACKENDS +----------------------- + +Default: ``('django.contrib.auth.backends.ModelBackend',)`` + +A tuple of authentication backend classes (as strings) to use when +attempting to authenticate a user. See the `authentication backends +documentation`_ for details. + +.. _authentication backends documentation: ../authentication/#other-authentication-sources + CACHE_BACKEND ------------- |
