Skip to content
Snippets Groups Projects
Commit aba42046 authored by Jamie McClelland's avatar Jamie McClelland
Browse files

add explanation to avoid having it changed in the future.

parent 7bc42e5a
No related branches found
No related tags found
1 merge request!182ensure customer name is in stripe report
......@@ -216,6 +216,8 @@ class CRM_Stripe_Customer {
$stripeCustomerParams = [
'name' => $contactDisplayName,
// Stripe does not include the Customer Name when exporting payments, just the customer
// description, so we stick the name in the description.
'description' => $contactDisplayName . ' (CiviCRM)',
'email' => $params['email'] ?? '',
'metadata' => [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment