about summary refs log tree commit diff stats
path: root/config/routes.rb
blob: 438ac395450695a65b86f95c24cc7db96b1b2dc5 (plain) (blame)
1
2
3
4
5
6
7
Pokeviewer::Engine.routes.draw do
  get '/', to: 'pokemon#index'
  post '/', to: 'uploader#submit'

  resources :pokemon, only: [:show]

end