mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
14 lines
272 B
Ruby
14 lines
272 B
Ruby
Rails.application.routes.draw do
|
|
resources :districts
|
|
|
|
resources :schools do
|
|
resources :recipients
|
|
end
|
|
|
|
devise_for :users
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
|
|
|
|
|
|
root to: "welcome#index"
|
|
end
|