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
While django-auth_enhanced is designed to work with Django's default User-model, it should work with custom user models aswell, if some minimum requirements are met.
This issue is about implementing enough abstraction to work with these custom models, aswell as checking minimum requirements of these models.
be as abstract as possible
do not assume certain model fields are always present and decouple them
While django-auth_enhanced is designed to work with Django's default User-model, it should work with custom user models aswell, if some minimum requirements are met.
This issue is about implementing enough abstraction to work with these custom models, aswell as checking minimum requirements of these models.
username
(useget_user_model().USERNAME_FIELD
)email
(useget_user_model().EMAIL_FIELD
)is_active
,is_staff
,is_superuser
The text was updated successfully, but these errors were encountered: