Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
Fix fingerprint phrases in bulk confirm modal (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliykat committed Jul 7, 2021
1 parent f711c48 commit 119699b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

0 comments on commit 119699b

Please sign in to comment.