fix: bug in the customer and tikcet for admin panel

This commit is contained in:
mahyargdz
2025-03-03 09:31:23 +03:30
parent 73fb9b915c
commit 0abac00bde
9 changed files with 72 additions and 60 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ export class TicketsController {
@Pagination()
@Get("admin")
getAllTickets(@Query() queryDto: SearchTicketQueryDto) {
return this.ticketsService.getAllTickets(queryDto);
return this.ticketsService.getTicketForAdmin(queryDto);
}
@ApiOperation({ summary: "create ticket messages" })