1
0
mirror of https://github.com/jakeswenson/BitBetter.git synced 2023-10-10 13:36:57 +02:00

Update Program.cs

This commit is contained in:
online-stuff 2018-11-21 20:42:23 -07:00 committed by GitHub
parent 1da8b95cbd
commit a38ef370cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
using System; using System;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Runtime.Loader; using System.Runtime.Loader;
@ -196,16 +196,19 @@ namespace bitwardenSelfLicensor
set("BillingEmail", email); set("BillingEmail", email);
set("BusinessName", "BitBetter"); set("BusinessName", "BitBetter");
set("Enabled", true); set("Enabled", true);
set("Plan", "Custom");
set("PlanType", (byte)6);
set("Seats", (short)32767); set("Seats", (short)32767);
set("MaxCollections", short.MaxValue); set("MaxCollections", short.MaxValue);
set("MaxStorageGb", short.MaxValue);
set("SelfHost", true);
set("UseGroups", true); set("UseGroups", true);
set("UseEvents", true);
set("UseDirectory", true); set("UseDirectory", true);
set("UseTotp", true); set("UseTotp", true);
set("PlanType", (byte)6); set("Use2fa", true);
set("Plan", "Custom"); set("MaxStorageGb", short.MaxValue);
set("Version", 1); set("SelfHost", true);
set("UsersGetPremium", true);
set("Version", 4);
set("Issued", DateTime.UtcNow); set("Issued", DateTime.UtcNow);
set("Refresh", DateTime.UtcNow.AddYears(100).AddMonths(-1)); set("Refresh", DateTime.UtcNow.AddYears(100).AddMonths(-1));
set("Expires", DateTime.UtcNow.AddYears(100)); set("Expires", DateTime.UtcNow.AddYears(100));