@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.

Add test plan to differential.revision.search

Summary: Ref T13151. Ref PHI622.

Test Plan: Loaded a revision in the Conduit UI; observed presence of `testPlan` field.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T13151

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

+5
+5
src/applications/differential/storage/DifferentialRevision.php
··· 1148 1148 ->setKey('summary') 1149 1149 ->setType('string') 1150 1150 ->setDescription(pht('Revision summary.')), 1151 + id(new PhabricatorConduitSearchFieldSpecification()) 1152 + ->setKey('testPlan') 1153 + ->setType('string') 1154 + ->setDescription(pht('Revision test plan.')), 1151 1155 ); 1152 1156 } 1153 1157 ··· 1167 1171 'repositoryPHID' => $this->getRepositoryPHID(), 1168 1172 'diffPHID' => $this->getActiveDiffPHID(), 1169 1173 'summary' => $this->getSummary(), 1174 + 'testPlan' => $this->getTestPlan(), 1170 1175 ); 1171 1176 } 1172 1177