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
20 lines
307 B
Ruby
20 lines
307 B
Ruby
module Analyze
|
|
module Source
|
|
class SurveyData
|
|
attr_reader :slices, :graph
|
|
|
|
def initialize(slices:, graph:)
|
|
@slices = slices
|
|
@graph = graph
|
|
end
|
|
|
|
def to_s
|
|
"Survey Data Only"
|
|
end
|
|
|
|
def slug
|
|
"survey-data-only"
|
|
end
|
|
end
|
|
end
|
|
end
|