Merge pull request #2707 from coreos-inc/cancel-emails
Only send internal cancelation emails if the user canceled themselves
This commit is contained in:
commit
e9813711e3
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
Reference in a new issue