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

21 lines
303 B
Ruby

# frozen_string_literal: true
module Dashboard
module Analyze
module Slice
class AllData
def to_s
"All Data"
end
def slug
"all-data"
end
def graphs
[Analyze::Graph::AllData.new]
end
end
end
end
end