From a5329a2a8f327ed8130fee876573640b13e17c66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Sun, 31 Aug 2014 11:09:39 -0700 Subject: [PATCH] doc: installation: fix ldap backend setting --- doc/source/installation.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/source/installation.rst b/doc/source/installation.rst index e424baf..8161e5f 100644 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -290,10 +290,8 @@ Enter in the virtualenv and install needed packages:: Add ``django_auth_ldap.backend.LDAPBackend`` to your authentication backends in ``ponytracker/local_settings.py``:: - AUTHENTICATION_BACKENDS = ( - 'django.contrib.auth.backends.ModelBackend', + AUTHENTICATION_BACKENDS += ( 'django_auth_ldap.backend.LDAPBackend', - 'issue.backends.ProjectBackend', ) Configure the backend by adding required variables in your local settings.