Hello there,
I ran into a problem using the package with the following configuration:
- Custom user model
- USERNAME_FIELD set as 'email'
When a user does not exist, he is correctly created but after logout and logging back in, he is not found anymore. The packages tries to create it but as he already exists with the same username, it crashes.
The mail is never set in the create_new_user method even if USERNAME_FIELD is set as email. Check here
I have been able to patch this behaviour using the following TRIGGER.CREATE_USER :
def post_create_user(user_dict, *args, **kwargs):
user_model = get_user_model()
user_id = user_dict.get(user_model.USERNAME_FIELD)
user = user_model.objects.get(username=user_id)
user.email = user_id
user.save()