mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 09:20:38 -07:00
17 lines
269 B
Ruby
17 lines
269 B
Ruby
module Analyze
|
|
module Slice
|
|
class StudentsAndTeachers
|
|
def to_s
|
|
'Students & Teachers'
|
|
end
|
|
|
|
def slug
|
|
'students-and-teachers'
|
|
end
|
|
|
|
def graphs
|
|
[Analyze::Graph::StudentsAndTeachers.new]
|
|
end
|
|
end
|
|
end
|
|
end
|