sqm-dashboards/app/controllers/legacy/welcome_controller.rb

10 lines
180 B
Ruby

module Legacy
class WelcomeController < ApplicationController
def index
@districts = District.all.alphabetic
@schools = School.all.alphabetic
end
end
end