sqm-dashboards/app/presenters/analyze/slice/students_by_group.rb

15 lines
209 B
Ruby

module Analyze
module Slice
class StudentsByGroup
attr_accessor :graph
def to_s
"Students by Group"
end
def slug
"students-by-group"
end
end
end
end