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:
parent
856374b3b2
commit
c987966eee
@ -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))
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user