sqm-dashboards/app/controllers/home_controller.rb
2021-12-01 16:34:17 -05:00

8 lines
232 B
Ruby

class HomeController < ApplicationController
def index
@districts = District.all.order(:name)
@schools = School.all
@categories = Category.sorted.map { |category| CategoryPresenter.new(category: category) }
end
end