diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-02-22 10:37:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-22 10:37:11 +0100 |
commit | d61972445b1c21470d49445e430d6c0f01b07b15 (patch) | |
tree | 0143c2e04e10fa4415239a8143906414768beee0 | |
parent | ff541493a87f9f6cdd082cae4f2492dfd9dd5516 (diff) | |
parent | 4a008e22cd6ea7534bf8a5be62d27c3c45d22297 (diff) | |
download | nextcloud-server-d61972445b1c21470d49445e430d6c0f01b07b15.tar.gz nextcloud-server-d61972445b1c21470d49445e430d6c0f01b07b15.zip |
Merge pull request #43726 from nextcloud/backport/43653/stable28
-rw-r--r-- | core/Command/Security/BruteforceAttempts.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Security/BruteforceAttempts.php b/core/Command/Security/BruteforceAttempts.php index 9237078339d..16cd9712864 100644 --- a/core/Command/Security/BruteforceAttempts.php +++ b/core/Command/Security/BruteforceAttempts.php @@ -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', |