Files
old-izreke/config/routes.rb

12 lines
284 B
Ruby
Raw Normal View History

2016-09-03 08:53:39 +02:00
Rails.application.routes.draw do
2016-09-08 09:59:42 +02:00
resources :authors
resources :users
resources :proverbs do
collection do
get 'random'
end
end
2016-09-03 08:53:39 +02:00
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
2016-09-08 09:59:42 +02:00
root to: 'proverbs#random'
2016-09-03 08:53:39 +02:00
end