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

14 lines
365 B

namespace :survey do
desc 'Text all Recipients ready for an Attempt (only on weekdays)'
task :attempt_questions => :environment do
if Date.today.on_weekday?
Schedule.active.each do |schedule|
schedule.recipient_schedules.ready.each do |recipient_schedule|
recipient_schedule.attempt_question
end
end
end
end
end