From a3e00cdc156e89d088b339afeb3af79615d6f496 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Fri, 19 Nov 2021 15:04:32 +0100 Subject: [PATCH] Add usesKeyConnector to OrganizationUserUserDetailsResponse (#559) --- common/src/models/response/organizationUserResponse.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/models/response/organizationUserResponse.ts b/common/src/models/response/organizationUserResponse.ts index 558f9db06c6..3b155f018b5 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; } }