11 lines
288 B
Ruby
Raw Normal View History

2019-03-24 09:57:29 -04: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-12 19:27:26 -04:00
get '/stripe/:id', to: 'stripe#show', as: 'stripe'
2019-04-09 08:43:42 -04:00
root to: "products#index"
2019-03-24 09:57:29 -04:00
end