mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
17 lines
221 B
Ruby
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
|