mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 15:38:21 -07:00
12 lines
299 B
Ruby
12 lines
299 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
|