sqm-dashboards/app/presenters/analyze/group/ell.rb

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