mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
21 lines
303 B
Ruby
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
|