Commit 905ac8c1 authored by Tim Felgentreff's avatar Tim Felgentreff

update to incorporate latest acts_as_journalized fixes

parent eb805ff3
......@@ -37,7 +37,8 @@ class Issue < ActiveRecord::Base
acts_as_watchable
acts_as_journalized :event_title => Proc.new {|o| "#{o.tracker.name} ##{o.journaled_id} (#{o.status}): #{o.subject}"},
:event_type => Proc.new {|o| 'issue' + (o.closed? ? ' closed' : '') }
:event_type => Proc.new {|o| 'issue' + (o.closed? ? ' closed' : '') },
:except => [:description]
register_on_journal_formatter(:id, 'parent_id')
register_on_journal_formatter(:named_association, 'project_id', 'status_id', 'tracker_id', 'assigned_to_id',
......
Subproject commit 1f7020941c8faded89c9e730671ede994a474923
Subproject commit 7afb22c75f1e7a1fbdfbc95608ecbb437d6c704c
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment