1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-23 22:01:28 +01:00

remove old org property

This commit is contained in:
Kyle Spearrin 2017-04-07 15:07:16 -04:00
parent ca3bbe2b76
commit 7e093a73be
2 changed files with 0 additions and 2 deletions

View File

@ -7,7 +7,6 @@ namespace Bit.Core.Models.Table
public class Organization : IDataObject<Guid>
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public string Name { get; set; }
public string BusinessName { get; set; }
public string BillingEmail { get; set; }

View File

@ -134,7 +134,6 @@ namespace Bit.Core.Services
Name = signup.Name,
BillingEmail = signup.BillingEmail,
BusinessName = signup.BusinessName,
UserId = signup.Owner.Id,
PlanType = plan.Type,
MaxUsers = (short)(plan.BaseUsers + (plan.CanBuyAdditionalUsers ? signup.AdditionalUsers : 0)),
Plan = plan.ToString(),