mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
17 lines
221 B
Ruby
17 lines
221 B
Ruby
module Analyze
|
|
module Group
|
|
class Ell
|
|
def name
|
|
"ELL"
|
|
end
|
|
|
|
def slug
|
|
"ell"
|
|
end
|
|
|
|
def graph
|
|
Analyze::Graph::StudentsByEll.new(ells: nil)
|
|
end
|
|
end
|
|
end
|
|
end
|