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