mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
25 lines
384 B
Ruby
25 lines
384 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Dashboard
|
|
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
|
|
end
|