mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
twoFactorEnabled on org user details
This commit is contained in:
@@ -21,11 +21,13 @@ export class OrganizationUserResponse {
|
|||||||
export class OrganizationUserUserDetailsResponse extends OrganizationUserResponse {
|
export class OrganizationUserUserDetailsResponse extends OrganizationUserResponse {
|
||||||
name: string;
|
name: string;
|
||||||
email: string;
|
email: string;
|
||||||
|
twoFactorEnabled: string;
|
||||||
|
|
||||||
constructor(response: any) {
|
constructor(response: any) {
|
||||||
super(response);
|
super(response);
|
||||||
this.name = response.Name;
|
this.name = response.Name;
|
||||||
this.email = response.Email;
|
this.email = response.Email;
|
||||||
|
this.twoFactorEnabled = response.TwoFactorEnabled;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user