2 Replies
Ping
Ping4w ago
Can you provide any code that could be relevant? It's unclear on any of the details from what you've provided.
belikebee
belikebeeOP4w ago
I have default config like this. Everything works fine but i dont understand if we have some token verification by default and why Verification table is empty. Should i implement all verification logic by myself? Thanks for the answer emailVerification: { required: true, sendOnSignUp: true, autoSignInAfterVerification: true, expiresIn: 3600, // 1 hour sendVerificationEmail: async ({ user, url }) => { console.log('Sending verification email to', user.email); } } model Verification { id String @id @default(cuid()) identifier String value String expiresAt DateTime createdAt DateTime? updatedAt DateTime? @@map("verification") }

Did you find this page helpful?