Skip to content

Commit

Permalink
#2 fix parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
skoro committed Aug 27, 2024
1 parent 697f324 commit e04fead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/Api/V1/OrderController.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function purchaseOrder(
return $this->json([
'order' => $order->getUuid(),
'status_check' => $this->generateUrl('api_v1_order_status', [
'uuid' => $order->getUuid(),
'order_uuid' => $order->getUuid(),
], referenceType: UrlGeneratorInterface::ABSOLUTE_URL),
'payment_redirect_url' => $paymentRedirectResponse->getRedirectUrl(),
], status: Response::HTTP_CREATED);
Expand Down

0 comments on commit e04fead

Please sign in to comment.