mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-12 17:00:34 -07:00
15 lines
209 B
Ruby
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
|