sqm-dashboards/app/presenters/analyze/source/all_data.rb
rebuilt c70f051e1e Refactor groups
Refactor graphs to take new slice format

Add Students and Teachers and Parents graph.  Add selector for that
graph
2025-03-20 13:12:52 -07:00

20 lines
288 B
Ruby

module Analyze
module Source
class AllData
attr_reader :slices, :graph
def initialize(slices:, graph:)
@slices = slices
@graph = graph
end
def to_s
"All Data"
end
def slug
"all-data"
end
end
end
end