mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
30 lines
515 B
Ruby
30 lines
515 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Analyze
|
|
module Graph
|
|
module Column
|
|
class Black < GroupedBarColumnPresenter
|
|
include Analyze::Graph::Column::ScoreForRace
|
|
def label
|
|
'Black'
|
|
end
|
|
|
|
def basis
|
|
'student'
|
|
end
|
|
|
|
def show_irrelevancy_message?
|
|
false
|
|
end
|
|
|
|
def show_insufficient_data_message?
|
|
false
|
|
end
|
|
|
|
def race
|
|
Race.find_by_qualtrics_code 3
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|