mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
Refactor graphs to take new slice format Add Students and Teachers and Parents graph. Add selector for that graph
20 lines
288 B
Ruby
20 lines
288 B
Ruby
module Analyze
|
|
module Source
|
|
class AllData
|
|
attr_reader :slices, :graph
|
|
|
|
def initialize(slices:, graph:)
|
|
@slices = slices
|
|
@graph = graph
|
|
end
|
|
|
|
def to_s
|
|
"All Data"
|
|
end
|
|
|
|
def slug
|
|
"all-data"
|
|
end
|
|
end
|
|
end
|
|
end
|