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

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