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

17 lines
221 B
Ruby

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