1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

remove business country from org signup

This commit is contained in:
Kyle Spearrin 2019-02-18 23:37:35 -05:00
parent 250784d197
commit 707c0ccb36
3 changed files with 0 additions and 4 deletions

View File

@ -30,7 +30,6 @@ namespace Bit.Core.Models.Api
[EncryptedString]
[EncryptedStringLength(1000)]
public string CollectionName { get; set; }
public string Country { get; set; }
public virtual OrganizationSignup ToOrganizationSignup(User user)
{
@ -46,7 +45,6 @@ namespace Bit.Core.Models.Api
PremiumAccessAddon = PremiumAccessAddon,
BillingEmail = BillingEmail,
BusinessName = BusinessName,
BusinessCountry = Country,
CollectionName = CollectionName
};
}

View File

@ -6,7 +6,6 @@ namespace Bit.Core.Models.Business
{
public string Name { get; set; }
public string BusinessName { get; set; }
public string BusinessCountry { get; set; }
public string BillingEmail { get; set; }
public User Owner { get; set; }
public string OwnerKey { get; set; }

View File

@ -516,7 +516,6 @@ namespace Bit.Core.Services
Name = signup.Name,
BillingEmail = signup.BillingEmail,
BusinessName = signup.BusinessName,
BusinessCountry = signup.BusinessCountry,
PlanType = plan.Type,
Seats = (short)(plan.BaseSeats + signup.AdditionalSeats),
MaxCollections = plan.MaxCollections,