mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
Add referenceId to register component
This commit is contained in:
@@ -13,9 +13,10 @@ export class RegisterRequest {
|
||||
organizationUserId: string;
|
||||
kdf: KdfType;
|
||||
kdfIterations: number;
|
||||
referenceId: string;
|
||||
|
||||
constructor(email: string, name: string, masterPasswordHash: string, masterPasswordHint: string, key: string,
|
||||
kdf: KdfType, kdfIterations: number) {
|
||||
kdf: KdfType, kdfIterations: number, referenceId: string) {
|
||||
this.name = name;
|
||||
this.email = email;
|
||||
this.masterPasswordHash = masterPasswordHash;
|
||||
@@ -23,5 +24,6 @@ export class RegisterRequest {
|
||||
this.key = key;
|
||||
this.kdf = kdf;
|
||||
this.kdfIterations = kdfIterations;
|
||||
this.referenceId = referenceId;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user