class ActsAsNotifiableRedmine::Event

Attributes

name[R]
sticky[R]
sticky?[R]

Public Class Methods

new(id, options = {}) click to toggle source
# File lib/acts_as_notifiable_redmine/event.rb, line 7
def initialize(id, options = {})
  @id     = id.to_sym
  @name   = @id
  @sticky = options[:sticky] || false
end