You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
376 B
22 lines
376 B
class StudentGroupedBarColumnPresenter < GroupedBarColumnPresenter
|
|
def label
|
|
'All Students'
|
|
end
|
|
|
|
def basis
|
|
'student'
|
|
end
|
|
|
|
def show_irrelevancy_message?
|
|
!@measure.includes_student_survey_items?
|
|
end
|
|
|
|
def show_insufficient_data_message?
|
|
!score.meets_student_threshold?
|
|
end
|
|
|
|
def score
|
|
measure.student_score(school:, academic_year:)
|
|
end
|
|
end
|