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.
sqm-dashboards/app/presenters/teacher_grouped_bar_column_...

22 lines
376 B

class TeacherGroupedBarColumnPresenter < GroupedBarColumnPresenter
def label
'All Teachers'
end
def basis
'teacher'
end
def show_irrelevancy_message?
!@measure.includes_teacher_survey_items?
end
def show_insufficient_data_message?
!score.meets_teacher_threshold?
end
def score
measure.teacher_score(school:, academic_year:)
end
end