mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
17 lines
231 B
Ruby
17 lines
231 B
Ruby
module Analyze
|
|
module Group
|
|
class Grade
|
|
def name
|
|
"Grade"
|
|
end
|
|
|
|
def slug
|
|
"grade"
|
|
end
|
|
|
|
def graph
|
|
Analyze::Graph::StudentsByGrade.new(grades: nil)
|
|
end
|
|
end
|
|
end
|
|
end
|