1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

Merge pull request #795 from bitwarden/fix/free-country-required

Fixed validation error for Free org accounts
This commit is contained in:
Chad Scharf
2020-06-25 16:09:37 -04:00
committed by GitHub

View File

@@ -37,7 +37,6 @@ namespace Bit.Core.Models.Api
public string BillingAddressCity { get; set; } public string BillingAddressCity { get; set; }
public string BillingAddressState { get; set; } public string BillingAddressState { get; set; }
public string BillingAddressPostalCode { get; set; } public string BillingAddressPostalCode { get; set; }
[Required]
[StringLength(2)] [StringLength(2)]
public string BillingAddressCountry { get; set; } public string BillingAddressCountry { get; set; }