1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

[PM-10100] Remove auto password generation (#10355)

* [PM-10100] Remove initial password generation on new Login ciphers

* [PM-10100] Update password help text

* [PM-10100] Fix linter
This commit is contained in:
Shane Melton
2024-08-07 12:57:05 -07:00
committed by GitHub
parent 0b6701d3f8
commit 600c8de129
9 changed files with 50 additions and 24 deletions

View File

@@ -11,10 +11,4 @@ export abstract class CipherFormGenerationService {
* Generates a random username. Called when the user clicks the "Generate Username" button in the UI.
*/
abstract generateUsername(): Promise<string | null>;
/**
* Generates an initial password for a new cipher. This should not involve any user interaction as it will
* be used to pre-fill the password field in the UI for new Login ciphers.
*/
abstract generateInitialPassword(): Promise<string | null>;
}