mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
8 lines
236 B
Ruby
8 lines
236 B
Ruby
class HomeController < ActionController::Base
|
|
def index
|
|
@districts = District.all.order(:name)
|
|
@schools = School.all
|
|
|
|
@categories = SqmCategory.sorted.map { |category| CategoryPresenter.new(category: category) }
|
|
end
|
|
end
|