27 lines
972 B
Ruby
27 lines
972 B
Ruby
|
module Redmine
|
||
|
class Notifiable < Struct.new(:name, :parent)
|
||
|
|
||
|
def to_s
|
||
|
name
|
||
|
end
|
||
|
|
||
|
# TODO: Plugin API for adding a new notification?
|
||
|
def self.all
|
||
|
notifications = []
|
||
|
notifications << Notifiable.new('issue_added')
|
||
|
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_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')
|
||
|
notifications << Notifiable.new('wiki_content_added')
|
||
|
notifications << Notifiable.new('wiki_content_updated')
|
||
|
notifications
|
||
|
end
|
||
|
end
|
||
|
end
|