mirror of
https://github.com/bitwarden/jslib
synced 2025-12-15 07:43:45 +00:00
[SSO] Set password auto enroll update (#472)
* [SSO/Auto Enroll] Set Password enrolls new user * Fixed typo * Linter updates * Cleanup // Constructor for SetPasswordRequest
This commit is contained in:
@@ -10,4 +10,15 @@ export class SetPasswordRequest {
|
||||
kdf: KdfType;
|
||||
kdfIterations: number;
|
||||
orgIdentifier: string;
|
||||
|
||||
constructor(masterPasswordHash: string, key: string, masterPasswordHint: string, kdf: KdfType,
|
||||
kdfIterations: number, orgIdentifier: string, keys: KeysRequest) {
|
||||
this.masterPasswordHash = masterPasswordHash;
|
||||
this.key = key;
|
||||
this.masterPasswordHint = masterPasswordHint;
|
||||
this.kdf = kdf;
|
||||
this.kdfIterations = kdfIterations;
|
||||
this.orgIdentifier = orgIdentifier;
|
||||
this.keys = keys;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user