@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<?php
2
3final class PhabricatorAuthTestSMSAction extends PhabricatorSystemAction {
4
5 const TYPECONST = 'auth.sms.test';
6
7 public function getScoreThreshold() {
8 return 60 / phutil_units('1 hour in seconds');
9 }
10
11 public function getLimitExplanation() {
12 return pht(
13 'You and other users on this install are collectively sending too '.
14 'many test text messages too quickly. Wait a few minutes to continue '.
15 'texting tests.');
16 }
17
18}