-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Description
I had everything working or so i though.. Site worked fine until i entered Solidus.
routes.rb
` mount Spree::Core::Engine, at: '/ecommerce'
get 'active' => 'sessions#active'
get 'timeout' => 'sessions#timeout'
`
When going into anything in Solidus it would throw:
ActionController::UrlGenerationError in Spree::OrdersController#edit
No route matches {:action=>"active", :controller=>"sessions"}
I was able to get around this by adding these lines to application_controller.rb
` def timeout_url
'/timeout'
end
def active_url
'/active'
end`
Metadata
Metadata
Assignees
Labels
No labels