mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
10 lines
180 B
Ruby
10 lines
180 B
Ruby
module Legacy
|
|
class WelcomeController < ApplicationController
|
|
|
|
def index
|
|
@districts = District.all.alphabetic
|
|
@schools = School.all.alphabetic
|
|
end
|
|
|
|
end
|
|
end
|