sqm-dashboards/app/presenters/analyze/slice/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

9 lines
186 B
Ruby

module Analyze
module Slice
class AllData < Base
def initialize(graph:, label: "All Data", slug: "all-data")
super(label:, slug:, graph:)
end
end
end
end