fix(username): add callbackURL option to signInUsername (#3324)

This commit is contained in:
Alec Larson
2025-07-09 22:04:39 -07:00
committed by GitHub
parent b766b22865
commit 63921f6eec
@@ -56,6 +56,11 @@ export const username = (options?: UsernameOptions) => {
description: "Remember the user session",
})
.optional(),
callbackURL: z
.string({
description: "The URL to redirect to after the user signs in",
})
.optional(),
}),
metadata: {
openapi: {