super-graph/rails-app/config/routes.rb

9 lines
234 B
Ruby
Raw Normal View History

2019-03-24 14:57:29 +01:00
Rails.application.routes.draw do
devise_for :customers
devise_for :users
resources :products
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
2019-04-09 14:43:42 +02:00
root to: "products#index"
2019-03-24 14:57:29 +01:00
end