mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
21 lines
351 B
Ruby
21 lines
351 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Dashboard
|
|
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
|
|
end
|