I have a quick question regarding the sign up with...
# supabase-kt
b
I have a quick question regarding the sign up with resent email verification email functionality. Details in thread
qq about resending a verification email. I notice that my initial email will use the scheme and host I set in the auth plugin, e.g.
Copy code
install(Auth) {
  scheme = "https"
  host = "<http://myhost.com/login|myhost.com/login>"
}
but when I use
Copy code
client.auth.resendEmail(OtpType.Email.SIGNUP, email)
It just uses the default that is set in my supabase dashboard. I’m not sure if we need the redirect email to be set in that case (which it doesn’t seem like we can provide ourself) or if it’s a supabase issue
h
For now I think you can just avoid having the scheme set in auth plugin. Use the default one from dashboard for consistency.
b
I’m thinking about how that would interact with the other emails that needs the confirmation url. Some need it, some don’t, but if I’m locked into domain.com/login for instance then that doesn’t really apply to say a password reset for instance
h
Could you share a bit more details about your use case @blakelee? Here's how I am using these URL in my app's Auth flow: I do not configure any default URL. So when first time user sign up, I just receive the default URL. If they need to resend confirmation email, I call the function with the URL I want to handle. Same with reset password.