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

12 lines
255 B

namespace :survey do
desc 'Text all Recipients ready for an Attempt'
task :make_attempts => :environment do
Schedule.active.all.each do |schedule|
schedule.recipient_schedules.ready.each do |recipient_schedule|
end
end
end
end