Projet

Général

Profil

0004-manually-applied-0005-django-1.6-authentication-back.patch

Nickolas Grigoriadis, 22 novembre 2014 06:28

Télécharger (959 octets)

Voir les différences:

Subject: [PATCH 4/7] manually applied
 0005-django-1.6-authentication-backends-import-path-must-.patch

License: MIT
 authentic2/settings.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
authentic2/settings.py
205 205

  
206 206
# authentication
207 207
AUTHENTICATION_BACKENDS = (
208
    'authentic2.backends.LDAPBackend',
209
    'authentic2.backends.ModelBackend',
208
    'authentic2.backends.ldap_backend.LDAPBackend',
209
    'authentic2.backends.models_backend.ModelBackend',
210 210
)
211 211
AUTHENTICATION_BACKENDS = plugins.register_plugins_authentication_backends(
212 212
        AUTHENTICATION_BACKENDS)
213
-