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

Pull handles for the standalone browse view.

+15
+15
src/applications/diffusion/controller/browse/DiffusionBrowseController.php
··· 87 87 $content[] = $error_view; 88 88 89 89 } else { 90 + 91 + $phids = array(); 92 + foreach ($results as $result) { 93 + $data = $result->getLastCommitData(); 94 + if ($data) { 95 + if ($data->getCommitDetail('authorPHID')) { 96 + $phids[$data->getCommitDetail('authorPHID')] = true; 97 + } 98 + } 99 + } 100 + $phids = array_keys($phids); 101 + 102 + $handles = id(new PhabricatorObjectHandleData($phids))->loadHandles(); 103 + 90 104 $browse_table = new DiffusionBrowseTableView(); 91 105 $browse_table->setDiffusionRequest($drequest); 106 + $browse_table->setHandles($handles); 92 107 $browse_table->setPaths($results); 93 108 94 109 $browse_panel = new AphrontPanelView();