mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-02-23 21:36:19 +08:00
Merge pull request #5 from nextcloud/increase-password-length
Increase length of passphrase to 8 words
This commit is contained in:
commit
c8e8c27925
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ class Setup
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$password = $this->passwordGenerator->GeneratePassword(6);
|
$password = $this->passwordGenerator->GeneratePassword(8);
|
||||||
$this->configurationManager->SetPassword($password);
|
$this->configurationManager->SetPassword($password);
|
||||||
return $password;
|
return $password;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue