summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2023-04-25 18:50:36 +0200
committerGitHub <noreply@github.com>2023-04-25 18:50:36 +0200
commit1795e6f1d02089dd6c08806f62fae7ac16d6f6e5 (patch)
treeae13ecbae916dd8a8406632bc71512369cf6db7f
parent4cc268de03b0251841d756099a541e21acf69c48 (diff)
parent81fb1b7298a8647daa14ec9a40bccc40bd0dd175 (diff)
Merge pull request #9375 from nextcloud/feature/9362/fix-command-description
Fix command description
-rw-r--r--docs/occ.md2
-rw-r--r--lib/Command/Monitor/Room.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/occ.md b/docs/occ.md
index cbd820e15..36dd3a220 100644
--- a/docs/occ.md
+++ b/docs/occ.md
@@ -95,7 +95,7 @@ Allows you to check if calls are currently in process
## talk:monitor:room
-Prints a list with conversations that have an active call as well as their participant count
+Prints the number of attendees, active sessions and participant in the call.
### Usage
diff --git a/lib/Command/Monitor/Room.php b/lib/Command/Monitor/Room.php
index a8f677ba9..5b67748c9 100644
--- a/lib/Command/Monitor/Room.php
+++ b/lib/Command/Monitor/Room.php
@@ -46,7 +46,7 @@ class Room extends Base {
$this
->setName('talk:monitor:room')
- ->setDescription('Prints a list with conversations that have an active call as well as their participant count')
+ ->setDescription('Prints the number of attendees, active sessions and participant in the call.')
->addArgument(
'token',
InputArgument::REQUIRED,