make it run

This commit is contained in:
Anika Raemer 2025-09-22 20:46:31 +02:00
parent c17bb05f0a
commit db480a88e0
7 changed files with 54 additions and 1 deletions

View file

@ -14,6 +14,7 @@ export class AuthController {
async login(loginRequest : LoginRequestDto): Promise<LoginResponseDto> {
const userName :string|undefined = loginRequest.userName;
const password :string|undefined = loginRequest.password;
console.log("user", userName, " is trying to log in with password", password)
if (!userName || !password) {
throw new ValidationError("Username and password are required");
}
@ -25,7 +26,7 @@ export class AuthController {
throw new UnauthorizedError("Invalid username or password");
}
// Compare password
const passwordMatches = encrypt.comparepassword(user.password, password);
const passwordMatches = encrypt.comparepassword(password, user.password);
if (!passwordMatches) {
throw new UnauthorizedError("Invalid username or password");
}