mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
[EC-489] chore: remove obsolete identifier
field (#2635)
* [EC-489] chore: remove obsolete `identifier` field * [EC-489] chore: remove identifier from org response model
This commit is contained in:
parent
e3fdb2636b
commit
04c4be8a15
@ -12,9 +12,6 @@ public class OrganizationUpdateRequestModel
|
|||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
[StringLength(50)]
|
[StringLength(50)]
|
||||||
public string BusinessName { get; set; }
|
public string BusinessName { get; set; }
|
||||||
[Obsolete("2022-08-03 Moved to Org SSO request model, left for backwards compatability. Remove with EC-489.")]
|
|
||||||
[StringLength(50)]
|
|
||||||
public string Identifier { get; set; }
|
|
||||||
[EmailAddress]
|
[EmailAddress]
|
||||||
[Required]
|
[Required]
|
||||||
[StringLength(256)]
|
[StringLength(256)]
|
||||||
@ -31,7 +28,6 @@ public class OrganizationUpdateRequestModel
|
|||||||
existingOrganization.BusinessName = BusinessName;
|
existingOrganization.BusinessName = BusinessName;
|
||||||
existingOrganization.BillingEmail = BillingEmail?.ToLowerInvariant()?.Trim();
|
existingOrganization.BillingEmail = BillingEmail?.ToLowerInvariant()?.Trim();
|
||||||
}
|
}
|
||||||
existingOrganization.Identifier = Identifier;
|
|
||||||
Keys?.ToOrganization(existingOrganization);
|
Keys?.ToOrganization(existingOrganization);
|
||||||
return existingOrganization;
|
return existingOrganization;
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,6 @@ public class OrganizationResponseModel : ResponseModel
|
|||||||
}
|
}
|
||||||
|
|
||||||
Id = organization.Id.ToString();
|
Id = organization.Id.ToString();
|
||||||
Identifier = organization.Identifier;
|
|
||||||
Name = organization.Name;
|
Name = organization.Name;
|
||||||
BusinessName = organization.BusinessName;
|
BusinessName = organization.BusinessName;
|
||||||
BusinessAddress1 = organization.BusinessAddress1;
|
BusinessAddress1 = organization.BusinessAddress1;
|
||||||
@ -51,7 +50,6 @@ public class OrganizationResponseModel : ResponseModel
|
|||||||
}
|
}
|
||||||
|
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
public string Identifier { get; set; }
|
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string BusinessName { get; set; }
|
public string BusinessName { get; set; }
|
||||||
public string BusinessAddress1 { get; set; }
|
public string BusinessAddress1 { get; set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user