Fix module authentication backend and urls module paths

This commit is contained in:
Benjamin Dauvergne 2014-08-20 15:36:22 +02:00
parent 05fa7aa891
commit 4d9f518c0f
1 changed files with 2 additions and 2 deletions

4
README
View File

@ -8,12 +8,12 @@ Basic usage
Add this to your project `urls.py`::
url('^accounts/kerberos/', include('django_auth_kerb.urls')),
url('^accounts/kerberos/', include('django_kerberos.urls')),
And use the default authentication backend, by adding that to your `settings.py` file::
AUTHENTICATION_BACKENDS = (
'django_auth_kerberos.backends.KerberosBackend',
'django_kerberos.backends.KerberosBackend',
)
Settings