mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
22 lines
325 B
Ruby
22 lines
325 B
Ruby
module Analyze
|
|
module Source
|
|
class SurveyData
|
|
attr_reader :slices
|
|
attr_accessor :graph
|
|
|
|
include Analyze::Slice
|
|
|
|
def initialize(slices:)
|
|
@slices = slices
|
|
end
|
|
|
|
def to_s
|
|
"Survey Data Only"
|
|
end
|
|
|
|
def slug
|
|
"survey-data-only"
|
|
end
|
|
end
|
|
end
|
|
end
|