mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
20 lines
383 B
Ruby
20 lines
383 B
Ruby
Rails.application.routes.draw do
|
|
resources :districts
|
|
|
|
resources :schools do
|
|
resources :recipient_lists
|
|
resources :recipients do
|
|
collection do
|
|
get :import
|
|
post :import
|
|
end
|
|
end
|
|
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
|