mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 09:20:38 -07:00
17 lines
236 B
Ruby
17 lines
236 B
Ruby
module Analyze
|
|
module Group
|
|
class Income
|
|
def name
|
|
"Income"
|
|
end
|
|
|
|
def slug
|
|
"income"
|
|
end
|
|
|
|
def graph
|
|
Analyze::Graph::StudentsByIncome.new(incomes: nil)
|
|
end
|
|
end
|
|
end
|
|
end
|