diff --git a/common/src/models/response/organizationUserResponse.ts b/common/src/models/response/organizationUserResponse.ts index 558f9db06c..3b155f018b 100644 --- a/common/src/models/response/organizationUserResponse.ts +++ b/common/src/models/response/organizationUserResponse.ts @@ -32,12 +32,14 @@ export class OrganizationUserUserDetailsResponse extends OrganizationUserRespons name: string; email: string; twoFactorEnabled: boolean; + usesKeyConnector: boolean; constructor(response: any) { super(response); this.name = this.getResponseProperty('Name'); this.email = this.getResponseProperty('Email'); this.twoFactorEnabled = this.getResponseProperty('TwoFactorEnabled'); + this.usesKeyConnector = this.getResponseProperty('UsesKeyConnector') ?? false; } }