mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
30 lines
612 B
Ruby
30 lines
612 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Analyze
|
|
module Graph
|
|
module Column
|
|
module RaceColumn
|
|
class MiddleEastern < GroupedBarColumnPresenter
|
|
include Analyze::Graph::Column::ScoreForRace
|
|
include Analyze::Graph::Column::RaceColumn::RaceCount
|
|
|
|
def label
|
|
%w[Middle Eastern]
|
|
end
|
|
|
|
def show_irrelevancy_message?
|
|
false
|
|
end
|
|
|
|
def show_insufficient_data_message?
|
|
false
|
|
end
|
|
|
|
def race
|
|
Race.find_by_qualtrics_code 8
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|