1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

adjust plans and add max subvaults to orgs

This commit is contained in:
Kyle Spearrin
2017-04-07 16:25:17 -04:00
parent 7e093a73be
commit e3cc1b9411
6 changed files with 9 additions and 7 deletions

View File

@ -94,7 +94,7 @@ namespace Bit.Core.Utilities
new Plan
{
Type = PlanType.Free,
BaseUsers = 1,
BaseUsers = 2,
CanBuyAdditionalUsers = false,
Name = "Free"
},
@ -105,8 +105,7 @@ namespace Bit.Core.Utilities
BaseAnnualPrice = 12,
UserAnnualPrice = 12,
CanBuyAdditionalUsers = true,
Trial = new TimeSpan(14, 0, 0, 0),
Cycle = now => now.AddYears(1) - now,
CanMonthly = false,
Name = "Personal",
StripeAnnualPlanId = "personal-annual",
StripeAnnualUserPlanId = "personal-user-annual"
@ -121,8 +120,6 @@ namespace Bit.Core.Utilities
UserMonthlyPrice = 2.5M,
CanBuyAdditionalUsers = true,
CanMonthly = true,
Trial = new TimeSpan(14, 0, 0, 0),
Cycle = now => now.AddMonths(1) - now,
Name = "Teams",
StripeAnnualPlanId = "teams-annual",
StripeAnnualUserPlanId = "teams-user-annual",