Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Rudolf <github.com@daniel-rudolf.de>2020-05-13 16:52:10 +0300
committerDaniel Rudolf <github.com@daniel-rudolf.de>2020-05-13 16:52:10 +0300
commit44a24353fe1ae1a0c6abbf1e1b8d0ccfc088746b (patch)
treed3e72ac2bb1e79d6bbe41cfdb23da4762239007c /lib
parenta238208d3a9bde0717c8277ff66e9ff96f7e00dc (diff)
Fix success messages for talk:room:* commands
Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Command/Room/Demote.php2
-rw-r--r--lib/Command/Room/Promote.php2
-rw-r--r--lib/Command/Room/Remove.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/Command/Room/Demote.php b/lib/Command/Room/Demote.php
index 0b4f8bac4..a3a7bc625 100644
--- a/lib/Command/Room/Demote.php
+++ b/lib/Command/Room/Demote.php
@@ -83,7 +83,7 @@ class Demote extends Base {
return 1;
}
- $output->writeln('<info>Users successfully remove from room.</info>');
+ $output->writeln('<info>Participants successfully demoted to regular users.</info>');
return 0;
}
}
diff --git a/lib/Command/Room/Promote.php b/lib/Command/Room/Promote.php
index e978e8dae..08356cd62 100644
--- a/lib/Command/Room/Promote.php
+++ b/lib/Command/Room/Promote.php
@@ -83,7 +83,7 @@ class Promote extends Base {
return 1;
}
- $output->writeln('<info>Users successfully added to room.</info>');
+ $output->writeln('<info>Participants successfully promoted to moderators.</info>');
return 0;
}
}
diff --git a/lib/Command/Room/Remove.php b/lib/Command/Room/Remove.php
index 016e8c608..1966e35d6 100644
--- a/lib/Command/Room/Remove.php
+++ b/lib/Command/Room/Remove.php
@@ -83,7 +83,7 @@ class Remove extends Base {
return 1;
}
- $output->writeln('<info>Users successfully remove from room.</info>');
+ $output->writeln('<info>Users successfully removed from room.</info>');
return 0;
}
}