mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
20 lines
310 B
Ruby
20 lines
310 B
Ruby
module Analyze
|
|
module Source
|
|
class SurveyData
|
|
attr_reader :slices
|
|
|
|
include Analyze::Slice
|
|
|
|
def initialize(slices:)
|
|
@slices = slices
|
|
end
|
|
# def to_s
|
|
# 'Survey Data Only'
|
|
# end
|
|
|
|
# def value
|
|
# 'survey-data-only'
|
|
# end
|
|
end
|
|
end
|
|
end
|