sqm-dashboards/app/presenters/analyze/graph/column/unknown.rb
2022-12-10 15:44:56 -08:00

30 lines
538 B
Ruby

# frozen_string_literal: true
module Analyze
module Graph
module Column
class Unknown < GroupedBarColumnPresenter
include Analyze::Graph::Column::ScoreForRace
def label
'Race/Ethnicity Not-Listed'
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 99
end
end
end
end
end