summaryrefslogtreecommitdiff
path: root/config/routes.rb
blob: 45d70ea41384f88162576a98b00690f937f369be (plain)
1
2
3
4
5
6
7
8
9
10
Rails.application.routes.draw do
  # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
  root "home#index", as: :home

  namespace :games do
    namespace :ptu do
      resources :pokemon, only: [:show, :new, :create]
    end
  end
end