sqm-dashboards/lib/tasks/survey.rake
2017-03-07 10:15:17 -05:00

11 lines
255 B
Ruby

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