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

Maniphest "attach" actions should always have workflow

+3 -3
+3 -3
src/applications/maniphest/controller/ManiphestTaskDetailController.php
··· 472 472 ->setWorkflow(true) 473 473 ->setIcon('link') 474 474 ->setDisabled(!$can_edit) 475 - ->setWorkflow(!$can_edit)); 475 + ->setWorkflow(true)); 476 476 477 477 $view->addAction( 478 478 id(new PhabricatorActionView()) ··· 481 481 ->setWorkflow(true) 482 482 ->setIcon('attach') 483 483 ->setDisabled(!$can_edit) 484 - ->setWorkflow(!$can_edit)); 484 + ->setWorkflow(true)); 485 485 486 486 $pholio_app = 487 487 PhabricatorApplication::getByClass('PhabricatorApplicationPholio'); ··· 493 493 ->setWorkflow(true) 494 494 ->setIcon('attach') 495 495 ->setDisabled(!$can_edit) 496 - ->setWorkflow(!$can_edit)); 496 + ->setWorkflow(true)); 497 497 } 498 498 499 499 return $view;