From fee9bde12f04918a1aca8d57df19e54d5ca2173c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 4 Apr 2017 22:26:50 -0400 Subject: [PATCH] update stripe plan names --- src/Core/Utilities/StaticStore.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Core/Utilities/StaticStore.cs b/src/Core/Utilities/StaticStore.cs index 192c4b144f..d7ab7f230a 100644 --- a/src/Core/Utilities/StaticStore.cs +++ b/src/Core/Utilities/StaticStore.cs @@ -108,8 +108,8 @@ namespace Bit.Core.Utilities Trial = new TimeSpan(14, 0, 0, 0), Cycle = now => now.AddYears(1) - now, Name = "Personal", - StripeAnnualPlanId = "premium-yearly", - StripeAnnualUserPlanId = "premium-user-yearly" + StripeAnnualPlanId = "personal-annual", + StripeAnnualUserPlanId = "personal-user-annual" }, new Plan { @@ -124,10 +124,10 @@ namespace Bit.Core.Utilities Trial = new TimeSpan(14, 0, 0, 0), Cycle = now => now.AddMonths(1) - now, Name = "Teams", - StripeAnnualPlanId = "premium-yearly", - StripeAnnualUserPlanId = "premium-user-yearly", - StripeMonthlyPlanId = "premium-yearly", - StripeMonthlyUserPlanId = "premium-user-yearly" + StripeAnnualPlanId = "teams-annual", + StripeAnnualUserPlanId = "teams-user-annual", + StripeMonthlyPlanId = "teams-monthly", + StripeMonthlyUserPlanId = "teams-user-monthly" } };