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