sqm-dashboards/app/presenters/analyze/source/all_data.rb
2022-11-18 08:20:26 -08:00

21 lines
279 B
Ruby

module Analyze
module Source
class AllData
attr_reader :slices
include Analyze::Slice
def initialize(slices:)
@slices = slices
end
def to_s
'All Data'
end
def slug
'all-data'
end
end
end
end