From f8edd3f358b1e862aab2395814a820fe41639d44 Mon Sep 17 00:00:00 2001 From: morteza-mortezai Date: Wed, 5 Nov 2025 23:17:17 +0330 Subject: [PATCH] fix : user profile orders list --- src/modules/user/user.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/user/user.controller.ts b/src/modules/user/user.controller.ts index ab60f09..8c17396 100644 --- a/src/modules/user/user.controller.ts +++ b/src/modules/user/user.controller.ts @@ -181,7 +181,7 @@ class UserController extends BaseController { //order @ApiOperation("get current logged in user order ") @ApiResponse("successful", HttpStatus.Ok) - @ApiQuery("status", "the status of order ==> can be = Delivered | Cancelled | Processing") + @ApiQuery("status", "the status of order ==> can be = Delivered | Cancelled | Processing | Returned | Shipped") @ApiAuth() @httpGet("/profile/orders", Guard.authUser()) public async getUserOrders(@request() req: Request, @queryParam("status") status: string) {