mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
Refactor graphs to take new slice format Add Students and Teachers and Parents graph. Add selector for that graph
9 lines
255 B
Ruby
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
|