mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
30 lines
534 B
Ruby
30 lines
534 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Analyze
|
|
module Graph
|
|
module Column
|
|
class AmericanIndian < GroupedBarColumnPresenter
|
|
include Analyze::Graph::Column::ScoreForRace
|
|
def label
|
|
'American Indian'
|
|
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 1
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|