sqm-dashboards/app/presenters/analyze/slice/students_and_teachers_and_parents.rb
rebuilt 6269414bca 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:18:12 -07:00

9 lines
255 B
Ruby

module Analyze
module Slice
class StudentsAndTeachersAndParents < Base
def initialize(graph:, label: "Students & Teachers & Parents", slug: "students-and-teachers-and-pareents")
super(label:, slug:, graph:)
end
end
end
end