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