@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 upstream/main 17 lines 397 B view raw
1<?php 2 3final class PhabricatorAuthEmailLoginAction extends PhabricatorSystemAction { 4 5 const TYPECONST = 'mail.login'; 6 7 public function getScoreThreshold() { 8 return 3 / phutil_units('1 hour in seconds'); 9 } 10 11 public function getLimitExplanation() { 12 return pht( 13 'Too many account recovery email links have been sent to this account '. 14 'in a short period of time.'); 15 } 16 17}