inputlogic / django-api-starter

Boilerplate for starting Django DRF / API projects
2 stars 0 forks source link

Signup and login should lowercase email input from user #66

Closed staydecent closed 4 years ago

staydecent commented 4 years ago

So if I sign up and send me email as "User@Example.org", we save it to DB as "user@example.org".

And if I try to sign up with "UseR@eXample.org" we match it to "user@example.org"

This almost always gives us issues, so am labeling as a bug.

Would be good to add a case to user.tests that covers this as well.