1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

fix twoFactorEnabled type

This commit is contained in:
Kyle Spearrin
2019-10-04 09:45:37 -04:00
parent 034aefa652
commit b2a8041173

View File

@@ -24,7 +24,7 @@ export class OrganizationUserResponse extends BaseResponse {
export class OrganizationUserUserDetailsResponse extends OrganizationUserResponse { export class OrganizationUserUserDetailsResponse extends OrganizationUserResponse {
name: string; name: string;
email: string; email: string;
twoFactorEnabled: string; twoFactorEnabled: boolean;
constructor(response: any) { constructor(response: any) {
super(response); super(response);