This commit is contained in:
2025-12-08 15:39:26 +03:30
parent 6dc40009a8
commit 6bda9bb31f
4 changed files with 39 additions and 7 deletions
@@ -47,3 +47,9 @@ export class FindReviewsDto {
order?: 'asc' | 'desc';
}
export class FindRestuarantReviewsDto extends FindReviewsDto {
@IsOptional()
@IsString()
@ApiPropertyOptional({ description: 'Restaurant slug to filter comments' })
restuarantSlug?: string;
}