@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use standard infrastructure for Audit search indexing

Summary: Ref T4896.

Test Plan: Made an unusual comment, then found it by searching.

Reviewers: btrahan, joshuaspence

Reviewed By: btrahan, joshuaspence

Subscribers: epriestley

Maniphest Tasks: T4896

Differential Revision: https://secure.phabricator.com/D10110

+4 -3
-3
src/applications/audit/editor/PhabricatorAuditCommentEditor.php
··· 263 263 $this->publishFeedStory($comment, $feed_phids); 264 264 } 265 265 266 - id(new PhabricatorSearchIndexer()) 267 - ->queueDocumentForIndexing($commit->getPHID()); 268 - 269 266 if (!$this->noEmail) { 270 267 $this->sendMail( 271 268 $comments,
+4
src/applications/audit/editor/PhabricatorAuditEditor.php
··· 111 111 return array_values(array_merge($head, $tail)); 112 112 } 113 113 114 + protected function supportsSearch() { 115 + return true; 116 + } 117 + 114 118 }