From ef24724e8c02277bce501f4b367cbbf8e950d3ac Mon Sep 17 00:00:00 2001 From: Alex Morask <144709477+amorask-bitwarden@users.noreply.github.com> Date: Mon, 29 Jul 2024 17:13:52 -0400 Subject: [PATCH] Set client org max storage to 1GB (#4567) --- .../Services/Implementations/OrganizationService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Core/AdminConsole/Services/Implementations/OrganizationService.cs b/src/Core/AdminConsole/Services/Implementations/OrganizationService.cs index 9f373a3ceb..d6b2823ffa 100644 --- a/src/Core/AdminConsole/Services/Implementations/OrganizationService.cs +++ b/src/Core/AdminConsole/Services/Implementations/OrganizationService.cs @@ -442,15 +442,14 @@ public class OrganizationService : IOrganizationService var organization = new Organization { - // Pre-generate the org id so that we can save it with the Stripe subscription.. + // Pre-generate the org id so that we can save it with the Stripe subscription. Id = CoreHelpers.GenerateComb(), Name = signup.Name, BillingEmail = signup.BillingEmail, PlanType = plan!.Type, Seats = signup.AdditionalSeats, MaxCollections = plan.PasswordManager.MaxCollections, - // Extra storage not available for purchase with Consolidated Billing. - MaxStorageGb = 0, + MaxStorageGb = 1, UsePolicies = plan.HasPolicies, UseSso = plan.HasSso, UseGroups = plan.HasGroups,