mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-10 07:50:33 -07:00
20 lines
324 B
Ruby
20 lines
324 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Analyze
|
|
module Graph
|
|
class AllData
|
|
include Analyze::Graph::Column
|
|
def to_s
|
|
%w[All Data]
|
|
end
|
|
|
|
def slug
|
|
"all-data"
|
|
end
|
|
|
|
def columns
|
|
[AllStudent, AllTeacher, AllAdmin, GroupedBarColumnPresenter]
|
|
end
|
|
end
|
|
end
|
|
end
|