This commit is contained in:
2026-01-27 11:46:07 +03:30
parent 75f2c4b73e
commit 935f905e29
4 changed files with 25 additions and 24 deletions
@@ -23,6 +23,7 @@ export class OrderController {
@UseGuards(AuthGuard)
@ApiOperation({ summary: 'create order ' })
createOrder(@UserId() userId: string, @Body() body: CreateOrderDto) {
console.log(userId)
return this.orderService.createOrderAsUser(userId, body);
}