wip tests update password

This commit is contained in:
sbriat
2023-07-10 17:37:50 +02:00
parent 55c4367702
commit de81325750
9 changed files with 182 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
import { IsNotEmpty, IsString } from 'class-validator';
export class UpdatePasswordRequestDto {
@IsString()
@IsNotEmpty()
userId: string;
@IsString()
@IsNotEmpty()
password: string;
}