diff options
author | Go MAEDA <maeda@farend.jp> | 2024-03-06 14:09:21 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-03-06 14:09:21 +0000 |
commit | 4506524ea5eb0b51e253fc7f6702907d04da79d9 (patch) | |
tree | 8ff84224fc414156e0e2a14dc493ab365a4aa785 /app/models | |
parent | fb449c77bc76b3bae9b3f0bfe18560b11f00902c (diff) | |
download | redmine-4506524ea5eb0b51e253fc7f6702907d04da79d9.tar.gz redmine-4506524ea5eb0b51e253fc7f6702907d04da79d9.zip |
Revert r22764 (#33829).
It breaks activities_controller_test.rb.
git-svn-id: https://svn.redmine.org/redmine/trunk@22770 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/issue.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb index b6d0b6a74..ad4728444 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -48,7 +48,6 @@ class Issue < ApplicationRecord :scope => lambda {|options| options[:open_issues] ? self.open : self.all} acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id} (#{o.status}): #{o.subject}"}, - :datetime => Proc.new {|o| o.updated_on}, :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}}, :type => Proc.new {|o| 'issue' + (o.closed? ? '-closed' : '')} |