mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
6 lines
137 B
Ruby
6 lines
137 B
Ruby
class HomeController < ActionController::Base
|
|
def index
|
|
@districts = District.all.order(:name)
|
|
@schools = School.all
|
|
end
|
|
end
|