From c987966eeee159b301ec1fb6f846473fd168332d Mon Sep 17 00:00:00 2001 From: jrmccannon Date: Fri, 28 Mar 2025 12:30:14 -0500 Subject: [PATCH] fixing name of method. --- src/Core/Services/Implementations/StripePaymentService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index c257655120..78f8b91284 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -1081,14 +1081,14 @@ public class StripePaymentService : IPaymentService true); public async Task HasSecretsManagerStandalone(Organization organization) => - await HasSecretsManagerAsync(gatewayCustomerId: organization.GatewayCustomerId, + await HasSecretsManagerStandaloneAsync(gatewayCustomerId: organization.GatewayCustomerId, organizationHasSecretsManager: organization.UseSecretsManager); public async Task HasSecretsManagerStandalone(InviteOrganization organization) => - await HasSecretsManagerAsync(gatewayCustomerId: organization.GatewayCustomerId, + await HasSecretsManagerStandaloneAsync(gatewayCustomerId: organization.GatewayCustomerId, organizationHasSecretsManager: organization.UseSecretsManager); - private async Task HasSecretsManagerAsync(string gatewayCustomerId, bool organizationHasSecretsManager) + private async Task HasSecretsManagerStandaloneAsync(string gatewayCustomerId, bool organizationHasSecretsManager) { if (string.IsNullOrEmpty(gatewayCustomerId)) {