mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
21 lines
298 B
Ruby
21 lines
298 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 slug
|
|
'survey-data-only'
|
|
end
|
|
end
|
|
end
|
|
end
|