##// END OF EJS Templates
Added three new notifiable events based on issue attributes...
Added three new notifiable events based on issue attributes * issue_note_added * issue_status_updated * issue_priority_updated git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4221 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4107:4c9f261a245b
r4107:4c9f261a245b
Show More
notifiable.rb
22 lines | 686 B | text/x-ruby | RubyLexer
module Redmine
class Notifiable
CoreNotifications = [
'issue_added',
'issue_updated',
'issue_note_added',
'issue_status_updated',
'issue_priority_updated',
'news_added',
'document_added',
'file_added',
'message_posted',
'wiki_content_added',
'wiki_content_updated'
]
# TODO: Plugin API for adding a new notification?
def self.all
CoreNotifications
end
end
end