Se agregó el inicio de sesion de google

This commit is contained in:
2025-09-02 13:58:37 -06:00
parent 8ad6db15dc
commit d8d2154cbe
15 changed files with 873 additions and 298 deletions
+11
View File
@@ -0,0 +1,11 @@
// dto/set-password.dto.ts
import { IsEmail, IsNotEmpty, MinLength } from 'class-validator';
export class SetPasswordDto {
@IsEmail()
email: string;
@IsNotEmpty()
@MinLength(6)
password: string;
}