settings: move LDAP authentication backend after model (#29386)

This commit is contained in:
Benjamin Dauvergne 2019-03-12 12:30:38 +01:00
parent 31dc47946d
commit a31a99b13f
1 changed files with 1 additions and 1 deletions

View File

@ -138,9 +138,9 @@ INSTALLED_APPS = tuple(plugins.register_plugins_installed_apps(INSTALLED_APPS))
# authentication
AUTHENTICATION_BACKENDS = (
'authentic2.backends.models_backend.ModelBackend',
'authentic2.backends.ldap_backend.LDAPBackend',
'authentic2.backends.ldap_backend.LDAPBackendPasswordLost',
'authentic2.backends.models_backend.ModelBackend',
'authentic2.backends.models_backend.DummyModelBackend',
'django_rbac.backends.DjangoRBACBackend',
)