diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-03-17 08:19:45 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-03-17 08:19:45 +0000 |
commit | b6958781934820b3b758b11197939d4aa5957823 (patch) | |
tree | 9472120dc3b83da07405558b0e07b66b2d56d3f7 /lib/redmine/notifiable.rb | |
parent | 4e5bb0e2316708f4d36bb27dd9fb25c4b01c60ba (diff) | |
download | redmine-b6958781934820b3b758b11197939d4aa5957823.tar.gz redmine-b6958781934820b3b758b11197939d4aa5957823.zip |
Adds an option to send email on "Assignee updated" in application settings (#16362).
git-svn-id: http://svn.redmine.org/redmine/trunk@12974 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/notifiable.rb')
-rw-r--r-- | lib/redmine/notifiable.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/redmine/notifiable.rb b/lib/redmine/notifiable.rb index 88ca9d776..41fd736e6 100644 --- a/lib/redmine/notifiable.rb +++ b/lib/redmine/notifiable.rb @@ -12,6 +12,7 @@ module Redmine notifications << Notifiable.new('issue_updated') notifications << Notifiable.new('issue_note_added', 'issue_updated') notifications << Notifiable.new('issue_status_updated', 'issue_updated') + notifications << Notifiable.new('issue_assigned_to_updated', 'issue_updated') notifications << Notifiable.new('issue_priority_updated', 'issue_updated') notifications << Notifiable.new('news_added') notifications << Notifiable.new('news_comment_added') |