Réno
Réno
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
Have you tried managing the handle outside the middleware and then calling it inside? For example, auth.helper.ts
const checkIfVerified = async => () {
const session = await auth.api.getSession({
headers: await headers()
});

return session?.user.emailVerified;
};
const checkIfVerified = async => () {
const session = await auth.api.getSession({
headers: await headers()
});

return session?.user.emailVerified;
};
middleware.ts
const userVerified = checkIfVerified();
const userVerified = checkIfVerified();
26 replies
BABetter Auth
Created by Réno on 3/12/2025 in #help
No cookies set when using the signInEmail method
Hey, This was due to a double check of the schema of the values sent, I changed the structure of my form in the meantime and forgot to clean it up. My bad. I'll leave the code just in case. Before:
// server action
export const signInAction = action.schema(signInSchema).action(async ({ parsedInput: input, ctx }) => {
try {
await signIn({
email: input.email,
password: input.password,
});
} catch {
return {
error: "Error while signing in",
};
}

//redirect("/");
});

// auth.methods
export const signIn = action.schema(signInSchema).action(async ({ parsedInput: input, ctx }) => {
await authentication.api.signInEmail({
body: {
email: input.email,
password: input.password
}
});
});
// server action
export const signInAction = action.schema(signInSchema).action(async ({ parsedInput: input, ctx }) => {
try {
await signIn({
email: input.email,
password: input.password,
});
} catch {
return {
error: "Error while signing in",
};
}

//redirect("/");
});

// auth.methods
export const signIn = action.schema(signInSchema).action(async ({ parsedInput: input, ctx }) => {
await authentication.api.signInEmail({
body: {
email: input.email,
password: input.password
}
});
});
After:
// server action
export const signInAction = action.schema(signInSchema).action(async ({ parsedInput: input, ctx }) => {
await signIn({
email: input.email,
password: input.password
});

redirect("/");
});

// auth.methods
export const signIn = async (input: SignInFormType) => {
await auth.api.signInEmail({
body: {
email: input.email,
password: input.password,
callbackUrl: "/",
rememberMe: false
}
});
};
// server action
export const signInAction = action.schema(signInSchema).action(async ({ parsedInput: input, ctx }) => {
await signIn({
email: input.email,
password: input.password
});

redirect("/");
});

// auth.methods
export const signIn = async (input: SignInFormType) => {
await auth.api.signInEmail({
body: {
email: input.email,
password: input.password,
callbackUrl: "/",
rememberMe: false
}
});
};
However callbackUrl not working so I redirect with next/redirect
5 replies
BABetter Auth
Created by Réno on 3/12/2025 in #help
No cookies set when using the signInEmail method
Yes, first I didn't use it, then I added it.
5 replies