[Feature] Implement Self-Serve Account Deletion

This commit is contained in:
Amruth Pillai
2023-01-19 00:11:15 +01:00
parent 5024c19f87
commit ff101dbfac
14 changed files with 235 additions and 14 deletions

View File

@ -0,0 +1,7 @@
import { IsNotEmpty, IsString, MinLength } from 'class-validator';
export class UpdateProfileDto {
@IsString()
@IsNotEmpty()
name: string;
}