feat: implement forgot password, added security updates
Some checks failed
Deploy / deploy (push) Successful in 1m28s
Security Tests / security-non-db (push) Failing after 18s
Security Tests / security-db (push) Failing after 22s

This commit is contained in:
2026-03-01 21:47:15 -06:00
parent c7c72e8199
commit 15e0c0a88a
19 changed files with 761 additions and 14 deletions

View File

@@ -24,6 +24,7 @@ model User {
id String @id @default(uuid())
email String @unique
passwordHash String?
passwordChangedAt DateTime?
displayName String?
emailVerified Boolean @default(false)
seenUpdateVersion Int @default(0)