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

20 lines
336 B
Ruby

# frozen_string_literal: true
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