1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

twoFactorEnabled on org user details

This commit is contained in:
Kyle Spearrin
2018-12-19 11:29:44 -05:00
parent aa17849329
commit cddeeefdbb

View File

@@ -21,11 +21,13 @@ export class OrganizationUserResponse {
export class OrganizationUserUserDetailsResponse extends OrganizationUserResponse {
name: string;
email: string;
twoFactorEnabled: string;
constructor(response: any) {
super(response);
this.name = response.Name;
this.email = response.Email;
this.twoFactorEnabled = response.TwoFactorEnabled;
}
}