mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
17 lines
236 B
Ruby
17 lines
236 B
Ruby
module Analyze
|
|
module Group
|
|
class Gender
|
|
def name
|
|
"Gender"
|
|
end
|
|
|
|
def slug
|
|
"gender"
|
|
end
|
|
|
|
def graph
|
|
Analyze::Graph::StudentsByGender.new(genders: nil)
|
|
end
|
|
end
|
|
end
|
|
end
|