update to incorporate latest acts_as_journalized fixes
This commit is contained in:
parent
eb805ff3fd
commit
905ac8c1e6
|
@ -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',
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 1f7020941c8faded89c9e730671ede994a474923
|
||||
Subproject commit 7afb22c75f1e7a1fbdfbc95608ecbb437d6c704c
|
Loading…
Reference in New Issue