Duki
Duki
BABetter Auth
Created by Duki on 3/8/2025 in #help
Session isn't updated after changing email of a user with an unverified email
No description
36 replies
BABetter Auth
Created by Duki on 2/28/2025 in #help
Is it possible to set callbackUrl on server-side email sign Ups?
I would like to handle my sign ups on the server side, but I'm struggling to find a proper way to set my callbackUrl in the documentation for the email verification. Tried it like this, but this doesn't seem to work
await auth.api.signUpEmail({
body: {
name: username,
email,
password
},
asResponse: true,
callbackUrl: '/my-url'
});
await auth.api.signUpEmail({
body: {
name: username,
email,
password
},
asResponse: true,
callbackUrl: '/my-url'
});
How can I set it properly? Or do I have to add it manually in auth.ts?
12 replies