summaryrefslogtreecommitdiffstats
path: root/app/models/time_entry.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-12-08 08:24:01 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-12-08 08:24:01 +0000
commit0e30724d660146d133318d9b3288a8a1eba4d8c4 (patch)
tree122f24969ad517248d59458e25f37726a342b191 /app/models/time_entry.rb
parent7222e4012db58c53d364e3b065e70338c094e878 (diff)
downloadredmine-0e30724d660146d133318d9b3288a8a1eba4d8c4.tar.gz
redmine-0e30724d660146d133318d9b3288a8a1eba4d8c4.zip
Group events in the activity view (#12542).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10951 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/time_entry.rb')
-rw-r--r--app/models/time_entry.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/time_entry.rb b/app/models/time_entry.rb
index 3abe114c0..17c2389ec 100644
--- a/app/models/time_entry.rb
+++ b/app/models/time_entry.rb
@@ -30,6 +30,7 @@ class TimeEntry < ActiveRecord::Base
acts_as_event :title => Proc.new {|o| "#{l_hours(o.hours)} (#{(o.issue || o.project).event_title})"},
:url => Proc.new {|o| {:controller => 'timelog', :action => 'index', :project_id => o.project, :issue_id => o.issue}},
:author => :user,
+ :group => :issue,
:description => :comments
acts_as_activity_provider :timestamp => "#{table_name}.created_on",