sqm-dashboards/app/controllers/welcome_controller.rb
2017-03-12 16:17:34 -04:00

8 lines
128 B
Ruby

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