@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 31 lines 645 B view raw
1<?php 2 3abstract class PhabricatorAuthContactNumberController 4 extends PhabricatorAuthController { 5 6 // Users may need to access these controllers to enroll in SMS MFA during 7 // account setup. 8 9 public function shouldRequireMultiFactorEnrollment() { 10 return false; 11 } 12 13 public function shouldRequireEnabledUser() { 14 return false; 15 } 16 17 public function shouldRequireEmailVerification() { 18 return false; 19 } 20 21 protected function buildApplicationCrumbs() { 22 $crumbs = parent::buildApplicationCrumbs(); 23 24 $crumbs->addTextCrumb( 25 pht('Contact Numbers'), 26 pht('/settings/panel/contact/')); 27 28 return $crumbs; 29 } 30 31}