Merge pull request #43653 from nextcloud/fix/bfp-occ-attempts-description

fix(security): Describe `occ security:bruteforce:attempts` accurately
This commit is contained in:
Josh 2024-02-21 09:30:49 -05:00 committed by GitHub
commit 1731d3154a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,11 +41,11 @@ class BruteforceAttempts extends Base {
parent::configure();
$this
->setName('security:bruteforce:attempts')
->setDescription('resets bruteforce attempts for given IP address')
->setDescription('Show bruteforce attempts status for a given IP address')
->addArgument(
'ipaddress',
InputArgument::REQUIRED,
'IP address for which the attempts are to be reset',
'IP address for which the attempts status is to be shown',
)
->addArgument(
'action',