fix: remove unused params from get all projects api

This commit is contained in:
Mhd Zayd Skaff
2025-05-20 14:40:48 +03:00
parent 5292271721
commit f7fd96afa1
2 changed files with 13 additions and 8 deletions

View File

@ -0,0 +1,7 @@
import { PaginationRequestGetListDto } from '@app/common/dto/pagination.request.dto';
import { PickType } from '@nestjs/swagger';
export class ListProjectsDto extends PickType(PaginationRequestGetListDto, [
'page',
'size',
]) {}