feat:forget password

This commit is contained in:
Abdalhamid Alhamad
2024-12-08 13:15:38 +03:00
parent c486d558ad
commit 90ee8023e6
19 changed files with 154 additions and 48 deletions

View File

@ -0,0 +1,4 @@
import { PickType } from '@nestjs/swagger';
import { LoginRequestDto } from './login.request.dto';
export class SendForgetPasswordOtpRequestDto extends PickType(LoginRequestDto, ['email']) {}