Hey everyone, we've hit a decently large issue wit...
# ideas-and-suggestions
e
Hey everyone, we've hit a decently large issue with the auth.user email change process- users have to validate the new email. we're using supabase as a backend for a mobile app. There's no web front end for this, meaning there's no where for the URL to go. Is there anyway to turn the validation off, like we can for signup?
s
I haven't tried this but you could use a trigger to set the
auth.users.email_change_confirm_status
column to the correct value after the user has updated their email and do any necessary update that is necessary in the trigger to avoid the validation being necessary. As stated I haven't tested this but it should work as a work around for now.
e
okay, thanks for this. I'll give it a try today