Compare commits

..

1 commit

Author SHA1 Message Date
d383f77c41
feat: implement credentials login
All checks were successful
container-scan / Container Scan (pull_request) Successful in 2m50s
docker-build / docker (pull_request) Successful in 7m3s
implements the credentials login functionality
2025-06-11 20:07:55 +02:00

View file

@ -51,7 +51,7 @@ export const registerSchema = zod
!data.password.includes(data.username),
{
message:
'Password cannot contain your first name, last name, email, or username',
'Password cannot contain your first name, last name, email, or username itself',
path: ['password'],
},
);