Page MenuHomec4science

PhabricatorAuthChangePasswordAction.php
No OneTemporary

File Metadata

Created
Sat, Jan 18, 15:01

PhabricatorAuthChangePasswordAction.php

<?php
final class PhabricatorAuthChangePasswordAction
extends PhabricatorSystemAction {
const TYPECONST = 'auth.password';
public function getActionConstant() {
return self::TYPECONST;
}
public function getScoreThreshold() {
return 20 / phutil_units('1 hour in seconds');
}
public function getLimitExplanation() {
return pht(
'You have failed to enter the correct account password too often in '.
'a short period of time.');
}
}

Event Timeline