You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
401 B
16 lines
401 B
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 :reports, to: 'reports#index'
|
|
get 'reports/gps', to: 'gps#index'
|
|
|
|
get '/welcome', to: 'home#index'
|
|
root to: 'home#index'
|
|
end
|