1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

rename plan to "Families"

This commit is contained in:
Kyle Spearrin 2017-11-08 12:36:27 -05:00
parent 666c065c47
commit daefe0d66b
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
public enum PlanType : byte
{
Free = 0,
FamilyAnnually = 1,
FamiliesAnnually = 1,
TeamsMonthly = 2,
TeamsAnnually = 3,
EnterpriseMonthly = 4,

View File

@ -101,11 +101,11 @@ namespace Bit.Core.Utilities
},
new Plan
{
Type = PlanType.FamilyAnnually,
Type = PlanType.FamiliesAnnually,
BaseSeats = 5,
BasePrice = 12,
CanBuyAdditionalSeats = false,
Name = "Family",
Name = "Families",
StripePlanId = "personal-org-annually",
StripStoragePlanId = "storage-gb-annually",
UpgradeSortOrder = 1,

View File

@ -16,7 +16,7 @@ GO
UPDATE
[dbo].[Organization]
SET
[Plan] = 'Family'
[Plan] = 'Families'
WHERE
[PlanType] = 1
GO