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

11 lines
288 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-05-13 01:27:26 +02:00
get '/stripe/:id', to: 'stripe#show', as: 'stripe'
2019-04-09 14:43:42 +02:00
root to: "products#index"
2019-03-24 14:57:29 +01:00
end