hello-learning/blog/config/routes.rb
2019-08-06 22:50:19 -05:00

10 lines
241 B
Ruby

Rails.application.routes.draw do
get 'welcome/index'
resources :articles do
resources :comments
end
root 'welcome#index'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end