sqm-dashboards/app/controllers/home_controller.rb
2021-12-10 15:17:02 +01:00

8 lines
245 B
Ruby

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