Dashboard/app/presenters/dashboard/analyze/source/all_data.rb
2024-01-26 19:07:15 -08:00

25 lines
365 B
Ruby

# frozen_string_literal: true
module Dashboard
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
end