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

Add Students and Teachers and Parents graph.  Add selector for that
graph
2025-03-18 11:43:42 -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