mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
10 lines
326 B
Ruby
10 lines
326 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Dashboard
|
|
class AnalyzeController < SqmApplicationController
|
|
def index
|
|
@presenter = Analyze::Presenter.new(params:, school: @school, academic_year: @academic_year)
|
|
@background ||= BackgroundPresenter.new(num_of_columns: @presenter.graph.columns.count)
|
|
end
|
|
end
|
|
end
|