diff --git a/apps/web/src/app/organizations/settings/account.component.ts b/apps/web/src/app/organizations/settings/account.component.ts index 7e685ea9c81..1f37993d7d2 100644 --- a/apps/web/src/app/organizations/settings/account.component.ts +++ b/apps/web/src/app/organizations/settings/account.component.ts @@ -77,7 +77,6 @@ export class AccountComponent { request.name = this.org.name; request.businessName = this.org.businessName; request.billingEmail = this.org.billingEmail; - request.identifier = this.org.identifier; // Backfill pub/priv key if necessary if (!this.org.hasPublicAndPrivateKeys) { diff --git a/libs/common/src/models/request/organization-update.request.ts b/libs/common/src/models/request/organization-update.request.ts index f7a8491ccbe..98d5d0338bc 100644 --- a/libs/common/src/models/request/organization-update.request.ts +++ b/libs/common/src/models/request/organization-update.request.ts @@ -2,11 +2,6 @@ import { OrganizationKeysRequest } from "./organization-keys.request"; export class OrganizationUpdateRequest { name: string; - /** - * @deprecated 2022-08-03 Moved to OrganizationSsoRequest, left for backwards compatability. - * https://bitwarden.atlassian.net/browse/EC-489 - */ - identifier: string; businessName: string; billingEmail: string; keys: OrganizationKeysRequest; diff --git a/libs/common/src/models/response/organization.response.ts b/libs/common/src/models/response/organization.response.ts index 1723ed7cfbd..ce684e34521 100644 --- a/libs/common/src/models/response/organization.response.ts +++ b/libs/common/src/models/response/organization.response.ts @@ -5,7 +5,6 @@ import { PlanResponse } from "./plan.response"; export class OrganizationResponse extends BaseResponse { id: string; - identifier: string; name: string; businessName: string; businessAddress1: string; @@ -32,7 +31,6 @@ export class OrganizationResponse extends BaseResponse { constructor(response: any) { super(response); this.id = this.getResponseProperty("Id"); - this.identifier = this.getResponseProperty("Identifier"); this.name = this.getResponseProperty("Name"); this.businessName = this.getResponseProperty("BusinessName"); this.businessAddress1 = this.getResponseProperty("BusinessAddress1");