You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
django_auth_ldap3 fails when trying to authenticate in an app that uses a custom user model (in my case, by subclassing AbstractUser and setting AUTH_USER_MODEL to the new class).
The solution (at least in django 1.8 and higher) is to use django.contrib.auth.get_user_model() to determine the model to use, rather than directly importing User.
I will make a pull request shortly with a patch.
The text was updated successfully, but these errors were encountered:
I think we should look at dropping support for 1.6 and 1.7 now that 1.8 is the new LTS and <1.8 is unsupported. I'll open an issue for that. (edit: #15)
django_auth_ldap3 fails when trying to authenticate in an app that uses a custom user model (in my case, by subclassing
AbstractUser
and settingAUTH_USER_MODEL
to the new class).The solution (at least in django 1.8 and higher) is to use
django.contrib.auth.get_user_model()
to determine the model to use, rather than directly importingUser
.I will make a pull request shortly with a patch.
The text was updated successfully, but these errors were encountered: