Enrollment + almost all auth

This commit is contained in:
mdares
2026-01-03 20:18:39 +00:00
parent 0ad2451dd4
commit a0ed517047
40 changed files with 3559 additions and 31 deletions

View File

@@ -17,11 +17,14 @@ async function main() {
const user = await prisma.user.upsert({
where: { email: "admin@maliountech.com" },
update: {},
update: {
emailVerifiedAt: new Date(),
},
create: {
email: "admin@maliountech.com",
name: "Admin",
passwordHash,
emailVerifiedAt: new Date(),
},
});