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

Adjust reviewer transaction icon in Differential

Summary:
Ref T4866. I did a fancy version of this but it looks pretty bad/confusing so here's a simple version.

Fancy-but-whack version:

{F146847}

Test Plan: This version is like that, but just always uses `fa-user`.

Reviewers: chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T4866

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

+5
+5
src/applications/differential/storage/DifferentialTransaction.php
··· 370 370 case DifferentialAction::ACTION_CLAIM: 371 371 return 'fa-flag'; 372 372 } 373 + case PhabricatorTransactions::TYPE_EDGE: 374 + switch ($this->getMetadataValue('edge:type')) { 375 + case PhabricatorEdgeConfig::TYPE_DREV_HAS_REVIEWER: 376 + return 'fa-user'; 377 + } 373 378 } 374 379 375 380 return parent::getIcon();