Skip to content
Snippets Groups Projects
Commit 8f74de2c authored by mattwire's avatar mattwire
Browse files

Add subscription status 'paused' mapped to 'Pending'

parent 7b2b7f0d
No related branches found
No related tags found
No related merge requests found
...@@ -416,6 +416,7 @@ class CRM_Stripe_Api { ...@@ -416,6 +416,7 @@ class CRM_Stripe_Api {
'past_due' => 'Overdue', 'past_due' => 'Overdue',
'canceled' => 'Cancelled', 'canceled' => 'Cancelled',
'unpaid' => 'Failed', 'unpaid' => 'Failed',
'paused' => 'Pending',
]; ];
return $statusMap[$subscriptionStatus] ?? ''; return $statusMap[$subscriptionStatus] ?? '';
} }
......
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