From aa12978848b2a2a9f8d47550512a04b0b1225f37 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:51:42 -0600 Subject: [PATCH] feat(server): add description to payment intent for better tracking --- src/GroundsForSupport.Server/Payments/Stripe/StripeService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/GroundsForSupport.Server/Payments/Stripe/StripeService.cs b/src/GroundsForSupport.Server/Payments/Stripe/StripeService.cs index a3662be..5fb57d4 100644 --- a/src/GroundsForSupport.Server/Payments/Stripe/StripeService.cs +++ b/src/GroundsForSupport.Server/Payments/Stripe/StripeService.cs @@ -21,6 +21,7 @@ internal sealed class StripeService( { var createOptions = new PaymentIntentCreateOptions { + Description = "Grounds for Support Donation", Amount = (long)(amount * 100), Currency = "usd", AutomaticPaymentMethods = new PaymentIntentAutomaticPaymentMethodsOptions