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

Remove non-operational `shouldHideFromFeed()` from ManiphestTaskPointsTransaction

Summary:
See D18018. Ref T12787. This doesn't actually work; we started publishing these stories as a side effect of converting to ModularTransactions, then I fixed the rendering.

This mechanism has very few callsites and I suspect we may want to get rid of it (see T12787) so just keep publishing these stories for now.

Test Plan: Changed the point value of a task, saw a feed story both before and after the patch.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12787

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

-4
-4
src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php
··· 17 17 $object->setPoints($value); 18 18 } 19 19 20 - public function shouldHideForFeed() { 21 - return true; 22 - } 23 - 24 20 public function shouldHide() { 25 21 if (!ManiphestTaskPoints::getIsEnabled()) { 26 22 return true;