diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-22 12:31:44 +0100 |
---|---|---|
committer | Côme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com> | 2022-04-01 12:18:02 +0000 |
commit | 77bdad84c21f2d836b778a2741eb8e8512ee19eb (patch) | |
tree | b381c26b71b0521da62986d3d026df45eb4c8cb7 /core | |
parent | d3d53494d499c036f230f11b24f4b4acfbcc34db (diff) | |
download | nextcloud-server-77bdad84c21f2d836b778a2741eb8e8512ee19eb.tar.gz nextcloud-server-77bdad84c21f2d836b778a2741eb8e8512ee19eb.zip |
Add ldap:reset-group command to unmap groups from LDAP
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Group/Delete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Group/Delete.php b/core/Command/Group/Delete.php index 75202308944..be97be83407 100644 --- a/core/Command/Group/Delete.php +++ b/core/Command/Group/Delete.php @@ -61,7 +61,7 @@ class Delete extends Base { $output->writeln('<error>Group "' . $gid . '" could not be deleted.</error>'); return 1; } - if (! $this->groupManager->groupExists($gid)) { + if (!$this->groupManager->groupExists($gid)) { $output->writeln('<error>Group "' . $gid . '" does not exist.</error>'); return 1; } |