mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
22 lines
389 B
Ruby
22 lines
389 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Dashboard
|
|
module Analyze
|
|
module Graph
|
|
class StudentsAndTeachers
|
|
include Analyze::Graph::Column
|
|
def to_s
|
|
"Students & Teachers"
|
|
end
|
|
|
|
def slug
|
|
"students-and-teachers"
|
|
end
|
|
|
|
def columns
|
|
[AllStudent, AllTeacher, AllSurveyData]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|