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

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