1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-25 13:24:50 -05: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
commit 3f7bc0eafc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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; }