summaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-09-20 23:17:51 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-09-20 23:17:51 +0000
commit51359704a0a4a4af49fa8724059bc292649bb1da (patch)
treee732a512f3d9012c9aba394614066607f97db32a /lib/tasks
parent55fbf6836be16f4776449e6bcdc8e029d67bcb66 (diff)
downloadredmine-51359704a0a4a4af49fa8724059bc292649bb1da.tar.gz
redmine-51359704a0a4a4af49fa8724059bc292649bb1da.zip
Added a users options to the reminders email
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4167 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/reminder.rake4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/tasks/reminder.rake b/lib/tasks/reminder.rake
index 73844fb79..d11c7cebb 100644
--- a/lib/tasks/reminder.rake
+++ b/lib/tasks/reminder.rake
@@ -22,9 +22,10 @@ Available options:
* days => number of days to remind about (defaults to 7)
* tracker => id of tracker (defaults to all trackers)
* project => id or identifier of project (defaults to all projects)
+ * users => comma separated list of user ids who should be reminded
Example:
- rake redmine:send_reminders days=7 RAILS_ENV="production"
+ rake redmine:send_reminders days=7 users="1,23, 56" RAILS_ENV="production"
END_DESC
namespace :redmine do
@@ -33,6 +34,7 @@ namespace :redmine do
options[:days] = ENV['days'].to_i if ENV['days']
options[:project] = ENV['project'] if ENV['project']
options[:tracker] = ENV['tracker'].to_i if ENV['tracker']
+ options[:users] = (ENV['users'] || '').split(',').each(&:strip!)
Mailer.reminders(options)
end