mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-12-26 00:30:46 +08:00
Increase length of passphrase to 8 words
Fixes https://github.com/nextcloud/all-in-one/issues/4 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
parent
0987cc2db9
commit
535c9c2895
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class Setup
|
|||
return '';
|
||||
}
|
||||
|
||||
$password = $this->passwordGenerator->GeneratePassword(6);
|
||||
$password = $this->passwordGenerator->GeneratePassword(8);
|
||||
$this->configurationManager->SetPassword($password);
|
||||
return $password;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue