sqm-dashboards/config/routes.rb
2023-01-12 17:02:34 -08:00

12 lines
327 B
Ruby

Rails.application.routes.draw do
resources :districts do
resources :schools, only: %i[index show] do
resources :overview, only: [:index]
resources :categories, only: [:show], path: 'browse'
resources :analyze, only: [:index]
end
end
get '/welcome', to: 'home#index'
root to: 'home#index'
end