mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
Add support for requesting and using otp for verifying some requests (#527)
Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
This commit is contained in:
10
common/src/models/response/keyConnectorUserKeyResponse.ts
Normal file
10
common/src/models/response/keyConnectorUserKeyResponse.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { BaseResponse } from './baseResponse';
|
||||
|
||||
export class KeyConnectorUserKeyResponse extends BaseResponse {
|
||||
key: string;
|
||||
|
||||
constructor(response: any) {
|
||||
super(response);
|
||||
this.key = this.getResponseProperty('Key');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user