diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-03-04 14:32:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-03-04 14:32:58 +0000 |
commit | 36009de154e0d7c50d56f21e79e0f812d9d8b5e8 (patch) | |
tree | 94534f093b942f97c90e004350b95fe1a6a0afd0 /lib/redmine/notifiable.rb | |
parent | 8d3773e0e1d0e259a2a193f31515ee910eb88626 (diff) | |
download | redmine-36009de154e0d7c50d56f21e79e0f812d9d8b5e8.tar.gz redmine-36009de154e0d7c50d56f21e79e0f812d9d8b5e8.zip |
Adds email notifications support for news comments (#2074).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5003 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 71d1ba501..37d4a4072 100644 --- a/lib/redmine/notifiable.rb +++ b/lib/redmine/notifiable.rb @@ -14,6 +14,7 @@ module Redmine notifications << Notifiable.new('issue_status_updated', 'issue_updated') notifications << Notifiable.new('issue_priority_updated', 'issue_updated') notifications << Notifiable.new('news_added') + notifications << Notifiable.new('news_comment_added') notifications << Notifiable.new('document_added') notifications << Notifiable.new('file_added') notifications << Notifiable.new('message_posted') |