12345678910111213141516171819202122 |
- Rails.application.routes.draw do
- get 'people/index'
- get 'people/download'
- #get 'people/downloadlong'
- get 'people/namesakes'
- get 'people/notset'
- put 'people/:id', to: 'people#update'
- get 'people/:id', to: 'people#show'
- get 'passes/index'
- get 'passes/notset'
- put 'passes/:id', to: 'passes#update'
- get 'passes/:id', to: 'passes#show'
- #put 'passes/:id', to: 'passes#update'
- root 'passes#index'
- # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
- end
|