mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Scale seats before inserting ProviderOrganization when adding existing organization (#5420)
This commit is contained in:
parent
4f73081e41
commit
228ce3b2e9
@ -111,10 +111,15 @@ public class ProviderBillingService(
|
|||||||
Key = key
|
Key = key
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We have to scale the provider's seats before the ProviderOrganization
|
||||||
|
* row is inserted so the added organization's seats don't get double counted.
|
||||||
|
*/
|
||||||
|
await ScaleSeats(provider, organization.PlanType, organization.Seats!.Value);
|
||||||
|
|
||||||
await Task.WhenAll(
|
await Task.WhenAll(
|
||||||
organizationRepository.ReplaceAsync(organization),
|
organizationRepository.ReplaceAsync(organization),
|
||||||
providerOrganizationRepository.CreateAsync(providerOrganization),
|
providerOrganizationRepository.CreateAsync(providerOrganization)
|
||||||
ScaleSeats(provider, organization.PlanType, organization.Seats!.Value)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
var clientCustomer = await subscriberService.GetCustomer(organization);
|
var clientCustomer = await subscriberService.GetCustomer(organization);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user