1
0
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:
Chad Scharf
2020-06-25 15:44:19 -04:00
parent 7f6d7424e7
commit c3389afd4f
2 changed files with 5 additions and 2 deletions

View File

@@ -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;
}
}