class Redmine::IssueEvent

An IssueEvent is a set of changes by a user to an Issue in the system, optionally with some notes. A user might change several properties of a ticket at once, as represented by IssueChange.

Public Instance Methods

issue_changes() click to toggle source

List of all changes introduced by this event as IssueChange objects.

# File lib/redmine/issue_event.rb, line 17
def issue_changes
  @details.map do |change|
    IssueChange.new(change)
  end
end