mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
10 lines
204 B
Ruby
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
|