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

Use callsigns, cards on repository lists

Summary: Minor, adds the Callsign and changes to cards view when listing repositories.

Test Plan: Reload sandbox list of repositories, see new items.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, epriestley, aran

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

+2
+2
src/applications/diffusion/controller/DiffusionRepositoryListController.php
··· 36 36 $project_handles = $this->loadViewerHandles($project_phids); 37 37 38 38 $list = new PHUIObjectItemListView(); 39 + $list->setCards(true); 39 40 foreach ($repositories as $repository) { 40 41 $id = $repository->getID(); 41 42 42 43 $item = id(new PHUIObjectItemView()) 43 44 ->setUser($viewer) 44 45 ->setHeader($repository->getName()) 46 + ->setObjectName('r'.$repository->getCallsign()) 45 47 ->setHref($this->getApplicationURI($repository->getCallsign().'/')); 46 48 47 49 $commit = $repository->getMostRecentCommit();