operador listo, solo falta reporte

This commit is contained in:
xXpuma99Xx
2022-05-02 14:40:17 -05:00
parent 233089cbf1
commit 63d83d46e2
24 changed files with 113 additions and 78 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export class BcryptService {
encriptar(password: string) {
const salt = bcrypt.genSaltSync(
Number(this.configService.get<string>('SALT_ROUNDS')),
parseInt(this.configService.get<string>('SALT_ROUNDS')),
);
return bcrypt.hashSync(password, salt);