sqm-dashboards/app/presenters/analyze/source/survey_data.rb
rebuilt 5890729642 Refactor groups
Refactor graphs to take new slice format

Add Students and Teachers and Parents graph.  Add selector for that
graph
2025-03-18 11:43:42 -07:00

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