You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/lib/tasks/survey.rake

13 lines
299 B

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