Add Spree::CheckoutController only to redirect to CheckoutController

I have not managed to make the spree checkout route, that paypal express uses, go to CheckoutController directly. According to the rails docs "to: '/checkout#edit'" should do it, but it doesnt work here.
This commit is contained in:
luisramos0
2020-02-05 10:44:41 +00:00
parent 6ce50a5fa5
commit 01fc4e0513

View File

@@ -0,0 +1,8 @@
module Spree
class CheckoutController < Spree::StoreController
def edit
flash.keep
redirect_to main_app.checkout_path
end
end
end