Ajout d'un endpoint pour modifier son mot de passe

This commit is contained in:
2024-12-07 13:52:49 +01:00
parent 45a1cebcf9
commit 1ae6b6634c
7 changed files with 48 additions and 8 deletions

View File

@ -13,9 +13,7 @@ export class AuthService {
if (!user) {
throw new NotFoundException(`Aucun⋅e utilisateur⋅rice avec pour nom ${name}`)
}
const isPasswordValid = await bcrypt.compare(password, user.password)
if (!isPasswordValid) {
throw new UnauthorizedException('Mot de passe incorrect')
}
@ -24,4 +22,4 @@ export class AuthService {
accessToken: this.jwtService.sign({ userId: user.id }),
}
}
}
}