Se agregó el inicio de sesion de google
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user