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

Show primary email in approval queue interface

Summary:
Request from @csilvers. When approving users, the primary email address is useful for administrators.

(This queue is only accessible by administrators, so this doesn't expose email information in general.)

Test Plan: {F132912}

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: shadowhand, csilvers, epriestley

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

+4
+4
src/applications/people/controller/PhabricatorPeopleListController.php
··· 62 62 ->addAttribute($email) 63 63 ->setImageURI($user->getProfileImageURI()); 64 64 65 + if ($is_approval && $primary_email) { 66 + $item->addAttribute($primary_email->getAddress()); 67 + } 68 + 65 69 if ($user->getIsDisabled()) { 66 70 $item->addIcon('disable', pht('Disabled')); 67 71 }