Files
openfoodnetwork/app/controllers/spree/checkout_controller.rb
2020-02-05 14:49:17 +00:00

11 lines
185 B
Ruby

# frozen_string_literal: true
module Spree
class CheckoutController < Spree::StoreController
def edit
flash.keep
redirect_to main_app.checkout_path
end
end
end