Defect #36059
open
Fulltext search in timelog comments
Added by Jan K. about 3 years ago.
Updated over 2 years ago.
Description
The Redmine Fulltext search is a great feature. We use it all the time.
Unfortunately it does not search in the Comments of the Timelogs.
Is there any chynce to add this datasource to the fulltext search?
Files
I fixed it so that comments on spent time can be searched. I have attached a patch.
diff --git a/app/models/time_entry.rb b/app/models/time_entry.rb
index 88e1796f34..5422e3f273 100644
--- a/app/models/time_entry.rb
+++ b/app/models/time_entry.rb
@@ -28,6 +28,8 @@ class TimeEntry < ActiveRecord::Base
belongs_to :activity, :class_name => 'TimeEntryActivity'
acts_as_customizable
+ acts_as_searchable :columns => ['comments'],
+ :preload => [:project, :issue]
acts_as_event(
:title =>
Proc.new do |o|
diff --git a/lib/redmine/preparation.rb b/lib/redmine/preparation.rb
index 4c6b3afe6e..08b6c33fd9 100644
--- a/lib/redmine/preparation.rb
+++ b/lib/redmine/preparation.rb
@@ -383,6 +383,7 @@ module Redmine
Search.map do |search|
search.register :issues
+ search.register :time_entries
search.register :news
search.register :documents
search.register :changesets
- Target version set to Candidate for next major release
- Is duplicate of Feature #4138: Add spent time comments in search added
Also available in: Atom
PDF