Merge branch 'main' of gitlab.bht-berlin.de:s86116/project_ss23 into search
Showing
- app/(auth)/Verification/page.tsx 25 additions, 0 deletionsapp/(auth)/Verification/page.tsx
- app/api/verification/[token]/route.ts 61 additions, 0 deletionsapp/api/verification/[token]/route.ts
- app/api/verifyEmail/route.ts 53 additions, 0 deletionsapp/api/verifyEmail/route.ts
- components/user-auth-form.tsx 11 additions, 6 deletionscomponents/user-auth-form.tsx
- env.mjs 4 additions, 0 deletionsenv.mjs
- lib/auth.ts 5 additions, 0 deletionslib/auth.ts
- lib/validations/sendVerificationEmail.ts 26 additions, 0 deletionslib/validations/sendVerificationEmail.ts
- package-lock.json 31 additions, 12 deletionspackage-lock.json
- package.json 5 additions, 3 deletionspackage.json
- prisma/schema.prisma 14 additions, 0 deletionsprisma/schema.prisma
app/(auth)/Verification/page.tsx
0 → 100644
app/api/verification/[token]/route.ts
0 → 100644
app/api/verifyEmail/route.ts
0 → 100644
lib/validations/sendVerificationEmail.ts
0 → 100644
... | ... | @@ -14,7 +14,7 @@ |
"postinstall": "prisma generate" | ||
}, | ||
"dependencies": { | ||
"@auth/prisma-adapter": "^1.0.0", | ||
"@auth/prisma-adapter": "^1.0.1", | ||
"@hookform/resolvers": "^3.1.1", | ||
"@prisma/client": "^4.16.2", | ||
"@radix-ui/react-alert-dialog": "^1.0.4", | ||
... | ... | @@ -43,6 +43,7 @@ |
"next-auth": "^4.22.1", | ||
"next-swagger-doc": "^0.4.0", | ||
"next-themes": "^0.2.1", | ||
"nodemailer": "^6.9.3", | ||
"normalize-diacritics": "^4.0.0", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
... | ... | @@ -61,8 +62,9 @@ |
"@testing-library/jest-dom": "^5.16.5", | ||
"@testing-library/react": "^14.0.0", | ||
"@types/bcrypt": "^5.0.0", | ||
"@types/jest": "^29.5.2", | ||
"@types/jest": "^29.5.3", | ||
"@types/node": "^20.4.1", | ||
"@types/nodemailer": "^6.4.8", | ||
"@types/react": "^18.2.14", | ||
"@types/react-dom": "^18.2.6", | ||
"@types/swagger-ui-react": "^4.18.0", | ||
... | ... | @@ -80,4 +82,4 @@ |
"semver": "^7.5.3", | ||
"optionator": "^0.9.3" | ||
} | ||
} | ||
} | ||
\ No newline at end of file |
Please register or sign in to comment