1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-30 15:13:22 +00:00

[Reset Password] Enrollment API, event type, and models update (#315)

This commit is contained in:
Vincent Salucci
2021-03-31 11:05:09 -05:00
committed by GitHub
parent 5c734747a9
commit f4f00b1eb2
7 changed files with 32 additions and 1 deletions

View File

@@ -27,6 +27,8 @@ export class OrganizationData {
ssoBound: boolean;
identifier: string;
permissions: PermissionsApi;
resetPasswordKey: string;
userId: string;
constructor(response: ProfileOrganizationResponse) {
this.id = response.id;
@@ -51,5 +53,7 @@ export class OrganizationData {
this.ssoBound = response.ssoBound;
this.identifier = response.identifier;
this.permissions = response.permissions;
this.resetPasswordKey = response.resetPasswordKey;
this.userId = response.userId;
}
}