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

10 lines
196 B
Ruby

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