Add order_token params to the redirect URL after checkout

This commit is contained in:
Jean-Baptiste Bellet
2022-05-09 17:45:52 +02:00
parent 44965ff235
commit 61f8dfd809
2 changed files with 3 additions and 3 deletions

View File

@@ -132,7 +132,7 @@ class SplitCheckoutController < ::BaseController
when "confirmation"
redirect_to checkout_step_path(:summary)
else
redirect_to order_path(@order)
redirect_to order_path(@order, order_token: @order.token)
end
end