@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 task point counts in `maniphest.search`

Summary: Ref T4427.

Test Plan: {F1104631}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T4427

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

+5
+5
src/applications/maniphest/storage/ManiphestTask.php
··· 462 462 ->setKey('priority') 463 463 ->setType('map<string, wild>') 464 464 ->setDescription(pht('Information about task priority.')), 465 + id(new PhabricatorConduitSearchFieldSpecification()) 466 + ->setKey('points') 467 + ->setType('points') 468 + ->setDescription(pht('Point value of the task.')), 465 469 ); 466 470 } 467 471 ··· 488 492 'ownerPHID' => $this->getOwnerPHID(), 489 493 'status' => $status_info, 490 494 'priority' => $priority_info, 495 + 'points' => $this->getPoints(), 491 496 ); 492 497 } 493 498