mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 15:08:15 -07:00
8 lines
267 B
Ruby
8 lines
267 B
Ruby
class CategoriesController < SqmApplicationController
|
|
helper GaugeHelper
|
|
def show
|
|
@categories = Category.sorted.map { |category| CategoryPresenter.new(category:) }
|
|
|
|
@category = CategoryPresenter.new(category: Category.find_by_slug(params[:id]))
|
|
end
|
|
end
|