mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
11 lines
298 B
Ruby
11 lines
298 B
Ruby
namespace :survey do
|
|
|
|
desc 'Text all Recipients ready for an Attempt'
|
|
task :attempt_questions => :environment do
|
|
Schedule.active.each do |schedule|
|
|
schedule.recipient_schedules.ready.each do |recipient_schedule|
|
|
recipient_schedule.attempt_question
|
|
end
|
|
end
|
|
end
|
|
end
|