sqm-dashboards/app/presenters/analyze/slice/students_by_group.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
212 B
Ruby

module Analyze
module Slice
class StudentsByGroup < Base
def initialize(graph:, label: "Students by Group", slug: "students-by-group")
super(label:, slug:, graph:)
end
end
end
end