summaryrefslogtreecommitdiffstats
path: root/app/models/journal.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-04-12 16:54:14 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-04-12 16:54:14 +0000
commit6d2a89142af235b5d0a9e30350859fb99ac665f3 (patch)
tree6d1ee51c6fe03dd5020299f9c50ad8ee0b688b57 /app/models/journal.rb
parent85f040c5362dd89829f694a58f4e91ced7fcd33e (diff)
downloadredmine-6d2a89142af235b5d0a9e30350859fb99ac665f3.tar.gz
redmine-6d2a89142af235b5d0a9e30350859fb99ac665f3.zip
Add an icon to each event on the activity view.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1342 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/journal.rb')
-rw-r--r--app/models/journal.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/journal.rb b/app/models/journal.rb
index 7c5e3d3bf..1376d349e 100644
--- a/app/models/journal.rb
+++ b/app/models/journal.rb
@@ -33,6 +33,7 @@ class Journal < ActiveRecord::Base
acts_as_event :title => Proc.new {|o| "#{o.issue.tracker.name} ##{o.issue.id}: #{o.issue.subject}" + ((s = o.new_status) ? " (#{s})" : '') },
:description => :notes,
:author => :user,
+ :type => Proc.new {|o| (s = o.new_status) && s.is_closed? ? 'issue-closed' : 'issue-edit' },
:url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.issue.id, :anchor => "change-#{o.id}"}}
def save