blob: 61d1a6b1432df897410637610ecae5cfc0dea2d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Rails.application.routes.draw do
get '/', to: 'pokemon#index'
post '/', to: 'uploader#submit'
resources :pokemon, only: [:show] do
member do
get 'embed'
get 'revisions/:revision_id', action: :show_revision, as: :show_revision
end
end
resources :pokedex, only: [:index]
end
|