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

Expose "affectedPaths" to "differential.revision.search" Conduit API method

Summary: Ref T13639. Support querying by "affectedPaths" in the API.

Test Plan: {F8539347}

Maniphest Tasks: T13639

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

+10
+10
src/applications/differential/query/DifferentialRevisionSearchEngine.php
··· 57 57 $map['modifiedEnd']); 58 58 } 59 59 60 + if ($map['affectedPaths']) { 61 + $query->withPaths($map['affectedPaths']); 62 + } 63 + 60 64 return $query; 61 65 } 62 66 ··· 118 122 ->setIsHidden(true) 119 123 ->setDescription( 120 124 pht('Find revisions modified at or before a particular time.')), 125 + id(new PhabricatorSearchStringListField()) 126 + ->setKey('affectedPaths') 127 + ->setLabel(pht('Affected Paths')) 128 + ->setDescription( 129 + pht('Search for revisions affecting particular paths.')) 130 + ->setIsHidden(true), 121 131 ); 122 132 } 123 133