mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
10 lines
302 B
Ruby
10 lines
302 B
Ruby
Dashboard::Engine.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"
|
|
end
|