Projet

Général

Profil

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

Nickolas Grigoriadis, 19 novembre 2014 13:58

Télécharger (946 octets)

Voir les différences:

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

 authentic2/settings.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
authentic2/settings.py
203 203

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