mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
Calculate benchmarks for measures based on a weighted average of survey and admin data items Added architectural records
10 lines
302 B
Ruby
10 lines
302 B
Ruby
namespace :survey do
|
|
desc 'Text all recipients ready for an attempt'
|
|
task attempt_questions: :environment do
|
|
Legacy::Schedule.active.each do |schedule|
|
|
schedule.recipient_schedules.ready.each do |recipient_schedule|
|
|
recipient_schedule.attempt_question
|
|
end
|
|
end
|
|
end
|
|
end
|