mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
17 lines
239 B
Ruby
17 lines
239 B
Ruby
module Analyze
|
|
module Group
|
|
class Sped
|
|
def name
|
|
"Special Education"
|
|
end
|
|
|
|
def slug
|
|
"sped"
|
|
end
|
|
|
|
def graph
|
|
Analyze::Graph::StudentsBySped.new(speds: nil)
|
|
end
|
|
end
|
|
end
|
|
end
|