summaryrefslogtreecommitdiff
path: root/config/routes.rb
blob: e54ecf2bef553ef152a8c8a38467a040db54fc0f (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
    end
  end
end