Merge pull request #2707 from coreos-inc/cancel-emails

Only send internal cancelation emails if the user canceled themselves
This commit is contained in:
josephschorr 2017-06-19 15:22:09 -04:00 committed by GitHub
commit e9813711e3

View file

@ -46,8 +46,10 @@ def stripe_webhook():
change_type = ''
if event_type.endswith('.deleted'):
plan_id = request_data['data']['object']['plan']['id']
change_type = 'canceled %s' % plan_id
send_subscription_change(change_type, customer_id, cust_email, quay_username)
requested = bool(request_data.get('request'))
if requested:
change_type = 'canceled %s' % plan_id
send_subscription_change(change_type, customer_id, cust_email, quay_username)
elif event_type.endswith('.created'):
plan_id = request_data['data']['object']['plan']['id']
change_type = 'subscribed %s' % plan_id