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

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