Merge pull request #5 from nextcloud/increase-password-length

Increase length of passphrase to 8 words
This commit is contained in:
Lukas Reschke
2021-11-30 13:06:40 +01:00
committed by GitHub

View File

@@ -21,7 +21,7 @@ class Setup
return '';
}
$password = $this->passwordGenerator->GeneratePassword(6);
$password = $this->passwordGenerator->GeneratePassword(8);
$this->configurationManager->SetPassword($password);
return $password;
}