mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
27 lines
728 B
Ruby
27 lines
728 B
Ruby
class SchoolCategory < ApplicationRecord
|
|
|
|
belongs_to :school
|
|
belongs_to :category
|
|
|
|
scope :for, -> (school, category) { where(school: school).where(category: category) }
|
|
|
|
def aggregated_responses
|
|
attempt_data = Attempt.
|
|
for_category(category).
|
|
for_school(school).
|
|
select('count(attempts.id) as attempt_count').
|
|
select('count(attempts.answer_index) as response_count').
|
|
select('sum(attempts.answer_index) as answer_index_total')[0]
|
|
|
|
return {
|
|
attempt_count: attempt_data.attempt_count,
|
|
response_count: attempt_data.response_count,
|
|
answer_index_total: attempt_data.answer_index_total
|
|
}
|
|
end
|
|
|
|
def aggregate_responses
|
|
return if ENV['BULK_PROCESS']
|
|
|
|
end
|
|
end
|