mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
Fix fingerprint phrases in bulk confirm modal (#425)
This commit is contained in:
@@ -2,11 +2,13 @@ import { BaseResponse } from './baseResponse';
|
|||||||
|
|
||||||
export class OrganizationUserBulkPublicKeyResponse extends BaseResponse {
|
export class OrganizationUserBulkPublicKeyResponse extends BaseResponse {
|
||||||
id: string;
|
id: string;
|
||||||
|
userId: string;
|
||||||
key: string;
|
key: string;
|
||||||
|
|
||||||
constructor(response: any) {
|
constructor(response: any) {
|
||||||
super(response);
|
super(response);
|
||||||
this.id = this.getResponseProperty('Id');
|
this.id = this.getResponseProperty('Id');
|
||||||
|
this.userId = this.getResponseProperty('UserId');
|
||||||
this.key = this.getResponseProperty('Key');
|
this.key = this.getResponseProperty('Key');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user