10 lines
241 B
Ruby
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
|