mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 15:38:21 -07:00
8 lines
150 B
Ruby
8 lines
150 B
Ruby
class WelcomeController < ApplicationController
|
|
|
|
def index
|
|
@districts = District.all.alphabetic
|
|
@schools = School.all.alphabetic
|
|
end
|
|
|
|
end
|