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

10 lines
204 B
Ruby

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