@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 20 lines 480 B view raw
1<?php 2 3abstract class PhabricatorPeopleInviteController 4 extends PhabricatorPeopleController { 5 6 public function shouldRequireAdmin() { 7 // The invite system supports non-admins very well. 8 // Non-admins can only see their invitees. 9 return false; 10 } 11 12 protected function buildApplicationCrumbs() { 13 $crumbs = parent::buildApplicationCrumbs(); 14 $crumbs->addTextCrumb( 15 pht('Invites'), 16 $this->getApplicationURI('invite/')); 17 return $crumbs; 18 } 19 20}