1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

[Reset Password v1] Update Temp Password (#446)

* [Reset Password v1] Update Temp Password

* Updating router to protected for child classes to access
This commit is contained in:
Vincent Salucci
2021-08-10 07:02:53 -05:00
committed by GitHub
parent 027747246c
commit c2e434e333
10 changed files with 131 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ export class ProfileResponse extends BaseResponse {
key: string;
privateKey: string;
securityStamp: string;
forcePasswordReset: boolean;
organizations: ProfileOrganizationResponse[] = [];
providers: ProfileProviderResponse[] = [];
providerOrganizations: ProfileProviderOrganizationResponse[] = [];
@@ -32,6 +33,7 @@ export class ProfileResponse extends BaseResponse {
this.key = this.getResponseProperty('Key');
this.privateKey = this.getResponseProperty('PrivateKey');
this.securityStamp = this.getResponseProperty('SecurityStamp');
this.forcePasswordReset = this.getResponseProperty('ForcePasswordReset');
const organizations = this.getResponseProperty('Organizations');
if (organizations != null) {