@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 "parent task" and "subtask" relationships to "edge.search"

Summary: Ref T12337. This just fills out a couple more task relationships.

Test Plan: Viewed the edges in the Conduit console, queried for them.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12337

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

+24
+12
src/applications/maniphest/edge/ManiphestTaskDependedOnByTaskEdgeType.php
··· 11 11 return true; 12 12 } 13 13 14 + public function getConduitKey() { 15 + return 'task.parent'; 16 + } 17 + 18 + public function getConduitName() { 19 + return pht('Parent Task'); 20 + } 21 + 22 + public function getConduitDescription() { 23 + return pht('The source object has the destination object as a parent.'); 24 + } 25 + 14 26 public function getTransactionAddString( 15 27 $actor, 16 28 $add_count,
+12
src/applications/maniphest/edge/ManiphestTaskDependsOnTaskEdgeType.php
··· 16 16 return true; 17 17 } 18 18 19 + public function getConduitKey() { 20 + return 'task.subtask'; 21 + } 22 + 23 + public function getConduitName() { 24 + return pht('Subtask'); 25 + } 26 + 27 + public function getConduitDescription() { 28 + return pht('The source object has the destination object as a subtask.'); 29 + } 30 + 19 31 public function getTransactionAddString( 20 32 $actor, 21 33 $add_count,