django-allauth set username the same as email
I have a sign up form which asks only for email and password. When a user signs up, django-allauth creates a username for that user by striping the "@email" suffix form the user's email address. So for example, if a user signs up with " some-user@example.com " his username will be " some-user " and if another user signs up with " some-user@gmail.com " then his username will be " some-userr " But what I want is the username and email of the users to have the same value. So how can I configure django-allauth to set the usernames as the users emails without striping their suffixes? And if