mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
20 lines
322 B
Ruby
20 lines
322 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Analyze
|
|
module Graph
|
|
class AllData
|
|
include Analyze::Graph::Column
|
|
def to_s
|
|
"All Data"
|
|
end
|
|
|
|
def slug
|
|
"all-data"
|
|
end
|
|
|
|
def columns
|
|
[AllStudent, AllTeacher, AllAdmin, GroupedBarColumnPresenter]
|
|
end
|
|
end
|
|
end
|
|
end
|