mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
remove business country from org signup
This commit is contained in:
parent
250784d197
commit
707c0ccb36
@ -30,7 +30,6 @@ namespace Bit.Core.Models.Api
|
|||||||
[EncryptedString]
|
[EncryptedString]
|
||||||
[EncryptedStringLength(1000)]
|
[EncryptedStringLength(1000)]
|
||||||
public string CollectionName { get; set; }
|
public string CollectionName { get; set; }
|
||||||
public string Country { get; set; }
|
|
||||||
|
|
||||||
public virtual OrganizationSignup ToOrganizationSignup(User user)
|
public virtual OrganizationSignup ToOrganizationSignup(User user)
|
||||||
{
|
{
|
||||||
@ -46,7 +45,6 @@ namespace Bit.Core.Models.Api
|
|||||||
PremiumAccessAddon = PremiumAccessAddon,
|
PremiumAccessAddon = PremiumAccessAddon,
|
||||||
BillingEmail = BillingEmail,
|
BillingEmail = BillingEmail,
|
||||||
BusinessName = BusinessName,
|
BusinessName = BusinessName,
|
||||||
BusinessCountry = Country,
|
|
||||||
CollectionName = CollectionName
|
CollectionName = CollectionName
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,6 @@ namespace Bit.Core.Models.Business
|
|||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string BusinessName { get; set; }
|
public string BusinessName { get; set; }
|
||||||
public string BusinessCountry { get; set; }
|
|
||||||
public string BillingEmail { get; set; }
|
public string BillingEmail { get; set; }
|
||||||
public User Owner { get; set; }
|
public User Owner { get; set; }
|
||||||
public string OwnerKey { get; set; }
|
public string OwnerKey { get; set; }
|
||||||
|
@ -516,7 +516,6 @@ namespace Bit.Core.Services
|
|||||||
Name = signup.Name,
|
Name = signup.Name,
|
||||||
BillingEmail = signup.BillingEmail,
|
BillingEmail = signup.BillingEmail,
|
||||||
BusinessName = signup.BusinessName,
|
BusinessName = signup.BusinessName,
|
||||||
BusinessCountry = signup.BusinessCountry,
|
|
||||||
PlanType = plan.Type,
|
PlanType = plan.Type,
|
||||||
Seats = (short)(plan.BaseSeats + signup.AdditionalSeats),
|
Seats = (short)(plan.BaseSeats + signup.AdditionalSeats),
|
||||||
MaxCollections = plan.MaxCollections,
|
MaxCollections = plan.MaxCollections,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user