Fix fingerprint phrases in bulk confirm modal (#425)

This commit is contained in:
Thomas Rittson 2021-07-07 20:08:52 +10:00 committed by GitHub
parent f711c48696
commit 119699b82c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -2,11 +2,13 @@ import { BaseResponse } from './baseResponse';
export class OrganizationUserBulkPublicKeyResponse extends BaseResponse {
id: string;
userId: string;
key: string;
constructor(response: any) {
super(response);
this.id = this.getResponseProperty('Id');
this.userId = this.getResponseProperty('UserId');
this.key = this.getResponseProperty('Key');
}
}