1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 18:12:48 -05:00

change personal plan to family. allow self host

This commit is contained in:
Kyle Spearrin
2017-11-06 16:01:58 -05:00
parent dccdef6db5
commit 0fdb9b3d2f
14 changed files with 282 additions and 23 deletions

View File

@ -101,20 +101,18 @@ namespace Bit.Core.Utilities
},
new Plan
{
Type = PlanType.PersonalAnnually,
Type = PlanType.FamilyAnnually,
BaseSeats = 5,
BasePrice = 12,
SeatPrice = 12,
CanBuyAdditionalSeats = true,
MaxAdditionalSeats = 5,
Name = "Personal",
CanBuyAdditionalSeats = false,
Name = "Family",
StripePlanId = "personal-org-annually",
StripeSeatPlanId = "personal-org-seat-annually",
StripStoragePlanId = "storage-gb-annually",
UpgradeSortOrder = 1,
TrialPeriodDays = 7,
UseTotp = true,
MaxStorageGb = 1
MaxStorageGb = 1,
SelfHost = true
},
new Plan
{
@ -165,7 +163,8 @@ namespace Bit.Core.Utilities
UseDirectory = true,
UseTotp = true,
MaxStorageGb = 1,
SelfHost = true
SelfHost = true,
UsersGetPremium = true
},
new Plan
{
@ -184,7 +183,8 @@ namespace Bit.Core.Utilities
UseDirectory = true,
UseTotp = true,
MaxStorageGb = 1,
SelfHost = true
SelfHost = true,
UsersGetPremium = true
}
};