Vivillies
Vivillies
BABetter Auth
Created by Vivillies on 3/6/2025 in #help
[SvelteKit] Stripe checkout redirects to /api/auth/dashboard
Alrighty. Just tested it out. Providing the entire route seems to work perfectly fine. Thanks for your help 🙏
10 replies
BABetter Auth
Created by Vivillies on 3/6/2025 in #help
[SvelteKit] Stripe checkout redirects to /api/auth/dashboard
export const authClient = createAuthClient({
baseURL: "http://localhost:5173",
plugins: [
inferAdditionalFields<typeof auth>(),
adminClient(),
stripeClient({
subscription: true
})
]
})
export const authClient = createAuthClient({
baseURL: "http://localhost:5173",
plugins: [
inferAdditionalFields<typeof auth>(),
adminClient(),
stripeClient({
subscription: true
})
]
})
10 replies
BABetter Auth
Created by Vivillies on 3/6/2025 in #help
[SvelteKit] Stripe checkout redirects to /api/auth/dashboard
This would be the function that gets called.
async function createSession(){
const { error } = await authClient.subscription.upgrade({
plan: "basic",
successUrl: "/dashboard",
cancelUrl: "/"
})
if (error){
alert(error.message)
}
}
async function createSession(){
const { error } = await authClient.subscription.upgrade({
plan: "basic",
successUrl: "/dashboard",
cancelUrl: "/"
})
if (error){
alert(error.message)
}
}
10 replies