1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 23:33:41 +00:00

stripe subscription creation

This commit is contained in:
Kyle Spearrin
2017-04-04 10:13:16 -04:00
parent 5187f4c15f
commit a4ef7c906e
10 changed files with 29 additions and 11 deletions

View File

@@ -99,11 +99,14 @@ namespace Bit.Core.Utilities
},
new Plan
{
Type = PlanType.Family,
Type = PlanType.Personal,
MaxUsers = 5,
Price = 1,
Trial = new TimeSpan(14, 0, 0, 0),
Cycle = now => now.AddYears(1) - now
Cycle = now => now.AddYears(1) - now,
Name = "Personal",
StripeId = "premium-yearly"
},
new Plan
{