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

at recaptime-dev/main 27 lines 668 B view raw
1<?php 2 3final class PhabricatorFeedListController 4 extends PhabricatorFeedController { 5 6 public function shouldAllowPublic() { 7 return true; 8 } 9 10 public function handleRequest(AphrontRequest $request) { 11 $navigation = array(); 12 13 $navigation[] = id(new PHUIListItemView()) 14 ->setType(PHUIListItemView::TYPE_LABEL) 15 ->setName(pht('Transactions')); 16 17 $navigation[] = id(new PHUIListItemView()) 18 ->setName(pht('Transaction Logs')) 19 ->setHref($this->getApplicationURI('transactions/')); 20 21 return id(new PhabricatorFeedSearchEngine()) 22 ->setController($this) 23 ->setNavigationItems($navigation) 24 ->buildResponse(); 25 } 26 27}