mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -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
|