mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-03 18:28:13 +01:00
[EC-489] chore: remove obsolete identifier
field (#4575)
* [EC-489] chore: remove obsolete `identifier` field * [EC-489] chore: remove identifier from org response
This commit is contained in:
parent
987c9db8b0
commit
67aad0c5b7
@ -77,7 +77,6 @@ export class AccountComponent {
|
|||||||
request.name = this.org.name;
|
request.name = this.org.name;
|
||||||
request.businessName = this.org.businessName;
|
request.businessName = this.org.businessName;
|
||||||
request.billingEmail = this.org.billingEmail;
|
request.billingEmail = this.org.billingEmail;
|
||||||
request.identifier = this.org.identifier;
|
|
||||||
|
|
||||||
// Backfill pub/priv key if necessary
|
// Backfill pub/priv key if necessary
|
||||||
if (!this.org.hasPublicAndPrivateKeys) {
|
if (!this.org.hasPublicAndPrivateKeys) {
|
||||||
|
@ -2,11 +2,6 @@ import { OrganizationKeysRequest } from "./organization-keys.request";
|
|||||||
|
|
||||||
export class OrganizationUpdateRequest {
|
export class OrganizationUpdateRequest {
|
||||||
name: string;
|
name: string;
|
||||||
/**
|
|
||||||
* @deprecated 2022-08-03 Moved to OrganizationSsoRequest, left for backwards compatability.
|
|
||||||
* https://bitwarden.atlassian.net/browse/EC-489
|
|
||||||
*/
|
|
||||||
identifier: string;
|
|
||||||
businessName: string;
|
businessName: string;
|
||||||
billingEmail: string;
|
billingEmail: string;
|
||||||
keys: OrganizationKeysRequest;
|
keys: OrganizationKeysRequest;
|
||||||
|
@ -5,7 +5,6 @@ import { PlanResponse } from "./plan.response";
|
|||||||
|
|
||||||
export class OrganizationResponse extends BaseResponse {
|
export class OrganizationResponse extends BaseResponse {
|
||||||
id: string;
|
id: string;
|
||||||
identifier: string;
|
|
||||||
name: string;
|
name: string;
|
||||||
businessName: string;
|
businessName: string;
|
||||||
businessAddress1: string;
|
businessAddress1: string;
|
||||||
@ -32,7 +31,6 @@ export class OrganizationResponse extends BaseResponse {
|
|||||||
constructor(response: any) {
|
constructor(response: any) {
|
||||||
super(response);
|
super(response);
|
||||||
this.id = this.getResponseProperty("Id");
|
this.id = this.getResponseProperty("Id");
|
||||||
this.identifier = this.getResponseProperty("Identifier");
|
|
||||||
this.name = this.getResponseProperty("Name");
|
this.name = this.getResponseProperty("Name");
|
||||||
this.businessName = this.getResponseProperty("BusinessName");
|
this.businessName = this.getResponseProperty("BusinessName");
|
||||||
this.businessAddress1 = this.getResponseProperty("BusinessAddress1");
|
this.businessAddress1 = this.getResponseProperty("BusinessAddress1");
|
||||||
|
Loading…
Reference in New Issue
Block a user