mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Set client org max storage to 1GB (#4567)
This commit is contained in:
parent
656e0c20f9
commit
ef24724e8c
@ -442,15 +442,14 @@ public class OrganizationService : IOrganizationService
|
|||||||
|
|
||||||
var organization = new Organization
|
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(),
|
Id = CoreHelpers.GenerateComb(),
|
||||||
Name = signup.Name,
|
Name = signup.Name,
|
||||||
BillingEmail = signup.BillingEmail,
|
BillingEmail = signup.BillingEmail,
|
||||||
PlanType = plan!.Type,
|
PlanType = plan!.Type,
|
||||||
Seats = signup.AdditionalSeats,
|
Seats = signup.AdditionalSeats,
|
||||||
MaxCollections = plan.PasswordManager.MaxCollections,
|
MaxCollections = plan.PasswordManager.MaxCollections,
|
||||||
// Extra storage not available for purchase with Consolidated Billing.
|
MaxStorageGb = 1,
|
||||||
MaxStorageGb = 0,
|
|
||||||
UsePolicies = plan.HasPolicies,
|
UsePolicies = plan.HasPolicies,
|
||||||
UseSso = plan.HasSso,
|
UseSso = plan.HasSso,
|
||||||
UseGroups = plan.HasGroups,
|
UseGroups = plan.HasGroups,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user