1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

fixing name of method.

This commit is contained in:
jrmccannon 2025-03-28 12:30:14 -05:00
parent 856374b3b2
commit c987966eee
No known key found for this signature in database
GPG Key ID: CF03F3DB01CE96A6

View File

@ -1081,14 +1081,14 @@ public class StripePaymentService : IPaymentService
true);
public async Task<bool> HasSecretsManagerStandalone(Organization organization) =>
await HasSecretsManagerAsync(gatewayCustomerId: organization.GatewayCustomerId,
await HasSecretsManagerStandaloneAsync(gatewayCustomerId: organization.GatewayCustomerId,
organizationHasSecretsManager: organization.UseSecretsManager);
public async Task<bool> HasSecretsManagerStandalone(InviteOrganization organization) =>
await HasSecretsManagerAsync(gatewayCustomerId: organization.GatewayCustomerId,
await HasSecretsManagerStandaloneAsync(gatewayCustomerId: organization.GatewayCustomerId,
organizationHasSecretsManager: organization.UseSecretsManager);
private async Task<bool> HasSecretsManagerAsync(string gatewayCustomerId, bool organizationHasSecretsManager)
private async Task<bool> HasSecretsManagerStandaloneAsync(string gatewayCustomerId, bool organizationHasSecretsManager)
{
if (string.IsNullOrEmpty(gatewayCustomerId))
{