Mercurial > hg > soundsoftware-site
comparison lib/redmine/notifiable.rb @ 37:94944d00e43c
* Update to SVN trunk rev 4411
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Fri, 19 Nov 2010 13:24:41 +0000 |
parents | |
children | cbce1fd3b1b7 |
comparison
equal
deleted
inserted
replaced
22:40f7cfd4df19 | 37:94944d00e43c |
---|---|
1 module Redmine | |
2 class Notifiable < Struct.new(:name, :parent) | |
3 | |
4 def to_s | |
5 name | |
6 end | |
7 | |
8 # TODO: Plugin API for adding a new notification? | |
9 def self.all | |
10 notifications = [] | |
11 notifications << Notifiable.new('issue_added') | |
12 notifications << Notifiable.new('issue_updated') | |
13 notifications << Notifiable.new('issue_note_added', 'issue_updated') | |
14 notifications << Notifiable.new('issue_status_updated', 'issue_updated') | |
15 notifications << Notifiable.new('issue_priority_updated', 'issue_updated') | |
16 notifications << Notifiable.new('news_added') | |
17 notifications << Notifiable.new('document_added') | |
18 notifications << Notifiable.new('file_added') | |
19 notifications << Notifiable.new('message_posted') | |
20 notifications << Notifiable.new('wiki_content_added') | |
21 notifications << Notifiable.new('wiki_content_updated') | |
22 notifications | |
23 end | |
24 end | |
25 end |