aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2024-02-21 09:30:49 -0500
committerGitHub <noreply@github.com>2024-02-21 09:30:49 -0500
commit1731d3154a8e9c8d3692c6c73f5a6b91b9bc17a5 (patch)
tree812fd96f162a426ae015fbcaf770e6820b3b4873
parentfa8b4f32d20d2e7e11729599675ecc07118e32ed (diff)
parent82f0adb91a0f34254b32545d7487500bc37c9fc2 (diff)
downloadnextcloud-server-1731d3154a8e9c8d3692c6c73f5a6b91b9bc17a5.tar.gz
nextcloud-server-1731d3154a8e9c8d3692c6c73f5a6b91b9bc17a5.zip
Merge pull request #43653 from nextcloud/fix/bfp-occ-attempts-description
fix(security): Describe `occ security:bruteforce:attempts` accurately
-rw-r--r--core/Command/Security/BruteforceAttempts.php4
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',