routes.rb 513 B

12345678910111213141516171819202122
  1. Rails.application.routes.draw do
  2. get 'people/index'
  3. get 'people/download'
  4. #get 'people/downloadlong'
  5. get 'people/namesakes'
  6. get 'people/notset'
  7. put 'people/:id', to: 'people#update'
  8. get 'people/:id', to: 'people#show'
  9. get 'passes/index'
  10. get 'passes/notset'
  11. put 'passes/:id', to: 'passes#update'
  12. get 'passes/:id', to: 'passes#show'
  13. #put 'passes/:id', to: 'passes#update'
  14. root 'passes#index'
  15. # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
  16. end