Consolidate E-Mail Adresses
As I'm migrating an mvp from custom SQLite to Supabase I realized that Auth isn't consolidating email addresses, for example
Also how could I do that currently?
So far I added a
What else am I missing?
Also asking because maybe people want to be able to create multiple accounts using just +addresses, though I think we don't actually want to allow that anyway.
mail@gmail.com & mail+label@gmail.com, I did that before in my manual setup so that people can easily switch between OAuth providers, their email address and don't have to remember if they used a + address or not and also that using a + address and then an OAuth provider would just work. Now I'm curious what people actually expect. I know that it got me a couple of times creating unwanted accounts instead of logging into an existing.Also how could I do that currently?
So far I added a
email_raw column to my profile table and auto populate it from generateLink data so I'll then be able to query profiles to see if there's already an associated profile with an email.What else am I missing?
Also asking because maybe people want to be able to create multiple accounts using just +addresses, though I think we don't actually want to allow that anyway.