1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-02 01:33:22 +00:00

Update docs

This commit is contained in:
Bernd Schoolmann
2025-10-30 10:52:46 +01:00
parent 99f84539b7
commit 87570a8032

View File

@@ -5,7 +5,7 @@ export abstract class LoginSuccessHandlerService {
* Runs any service calls required after a successful login.
* Service calls that should be included in this method are only those required to be awaited after successful login.
* @param userId The user id.
* @param masterPassword
* @param masterPassword The master password, if available. Null when logging in with SSO or other non-master-password methods.
*/
abstract run(userId: UserId, masterPassword: string | null): Promise<void>;
}