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