mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
Refactor graphs to take new slice format Add Students and Teachers and Parents graph. Add selector for that graph
9 lines
186 B
Ruby
9 lines
186 B
Ruby
module Analyze
|
|
module Slice
|
|
class AllData < Base
|
|
def initialize(graph:, label: "All Data", slug: "all-data")
|
|
super(label:, slug:, graph:)
|
|
end
|
|
end
|
|
end
|
|
end
|