summaryrefslogtreecommitdiff
path: root/config/routes.rb
blob: d57781638e36c30d301075ae0ae7ef6196e9b923 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
      resources :encounters, only: [:index]
    end
  end
end