aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-11-07 10:02:30 +0100
committerGitHub <noreply@github.com>2023-11-07 10:02:30 +0100
commit273f628c3daa4ca420d5197884e1357b09eb5a9b (patch)
treebb212b73160810a809d1c1d3c1bbbddb20033d3f /apps/user_ldap
parentbcc4d7d042e8e9e7990fda20e64e5b1c9f1295e2 (diff)
parent6b7d4b67d1d48104123a9e3d13d40b952333e67a (diff)
downloadnextcloud-server-273f628c3daa4ca420d5197884e1357b09eb5a9b.tar.gz
nextcloud-server-273f628c3daa4ca420d5197884e1357b09eb5a9b.zip
Merge pull request #41083 from nextcloud/feat/improve-setup-checks-wording
Improve setup checks naming and improve database version check
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php b/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php
index d6de11d35b9..8b6bf859142 100644
--- a/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php
+++ b/apps/user_ldap/lib/SetupChecks/LdapInvalidUuids.php
@@ -46,13 +46,13 @@ class LdapInvalidUuids implements ISetupCheck {
}
public function getName(): string {
- return $this->l10n->t('Checking for invalid LDAP UUIDs');
+ return $this->l10n->t('Invalid LDAP UUIDs');
}
public function run(): SetupResult {
if (count($this->userMapping->getList(0, 1, true)) === 0
&& count($this->groupMapping->getList(0, 1, true)) === 0) {
- return SetupResult::success();
+ return SetupResult::success($this->l10n->t('None found'));
} else {
return SetupResult::warning($this->l10n->t('Invalid UUIDs of LDAP users or groups have been found. Please review your "Override UUID detection" settings in the Expert part of the LDAP configuration and use "occ ldap:update-uuid" to update them.'));
}