stable

Clone or download

Read-only

Closes story #26773: index followup comments (NEW & EDIT)

Follow up comments are now taken into account when using the full-text-search. You can index existing comments using `tuleap full-text-search:index-all-items` Change-Id: Icf303606b0679806c5b928951af02535fbe5c633

Modified Files

Name
M plugins/gitlab/include/gitlabPlugin.php +15 −6 Go to diff View file
M plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/IterationCreationProcessorBuilder.php +6 −0 Go to diff View file
M plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/IterationUpdateProcessorBuilder.php +7 −1 Go to diff View file
M plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/ProgramIncrementCreationProcessorBuilder.php +6 −0 Go to diff View file
M plugins/program_management/include/Adapter/Program/Backlog/AsynchronousCreation/ProgramIncrementUpdateProcessorBuilder.php +7 −1 Go to diff View file
M plugins/program_management/include/program_managementPlugin.php +5 −0 Go to diff View file
M plugins/taskboard/include/REST/v1/Card/CardPatcher.php +6 −0 Go to diff View file
M plugins/taskboard/include/REST/v1/Cell/CardMappedFieldUpdater.php +6 −0 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/CampaignsResource.class.php +5 −0 Go to diff View file
M plugins/testmanagement/include/TestManagement/REST/v1/ExecutionsResource.class.php +5 −0 Go to diff View file
M plugins/tracker/include/REST/v1/ArtifactsResource.class.php +6 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Artifact.php +5 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArchiveAndDeleteArtifactTask.php +3 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/ArtifactsDeletion/ArchiveAndDeleteArtifactTaskBuilder.php +6 −4 Go to diff View file
A plugins/tracker/include/Tracker/Artifact/Changeset/Comment/ChangesetCommentIndexer.php +105 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Changeset/Comment/CommentCreator.php +3 −0 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_Changeset.class.php +6 −1 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/Tracker_Artifact_Changeset_Comment.class.php +10 −5 Go to diff View file
M plugins/tracker/include/Tracker/Artifact/XMLImportBuilder.class.php +5 −0 Go to diff View file
M plugins/tracker/include/Tracker/Search/IndexAllArtifactsProcessor.php +10 −2 Go to diff View file
M plugins/tracker/include/Tracker/Search/SearchResultRetriever.php +16 −0 Go to diff View file
M plugins/tracker/include/Tracker/Tracker.class.php +5 −0 Go to diff View file
M plugins/tracker/include/trackerPlugin.php +12 −2 Go to diff View file
A plugins/tracker/tests/unit/Artifact/Changeset/Comment/ChangesetCommentIndexerTest.php +178 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/ArtifactsDeletion/ArchiveAndDeleteArtifactTaskTest.php +4 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/Changeset/Comment/CommentCreatorTest.php +16 −4 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/Changeset/NewChangesetCreatorTest.php +6 −1 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Artifact/Tracker_ArtifactTest.php +5 −0 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Search/SearchResultRetrieverTest.php +35 −1 Go to diff View file