mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
11 lines
243 B
Ruby
11 lines
243 B
Ruby
class BrowseController < SqmApplicationController
|
|
|
|
def show
|
|
@category = CategoryPresenter.new(
|
|
category: SqmCategory.find_by_name('Teachers & Leadership'),
|
|
academic_year: academic_year,
|
|
school: school,
|
|
)
|
|
end
|
|
|
|
end
|