Compare commits
8 Commits
49acea31ac
...
9d06151ed2
Author | SHA1 | Date | |
---|---|---|---|
9d06151ed2 | |||
63ee2aa82b | |||
94ebacd84d | |||
8f5f8df0aa | |||
7729ea62b3 | |||
fca523f013 | |||
4482f85ded | |||
cd598cce47 |
@ -277,7 +277,14 @@ def stripeapi():
|
||||
return jsonify({'success': 'false'})
|
||||
|
||||
if event.type == 'payment_intent.succeeded':
|
||||
# Only for payments for licences
|
||||
payment_intent = event.data.object
|
||||
if payment_intent['amount'] != 1000:
|
||||
return jsonify({'success': 'true'})
|
||||
|
||||
if payment_intent['description'] != "Subscription creation":
|
||||
return jsonify({'success': 'true'})
|
||||
|
||||
# Get email
|
||||
email = payment_intent['receipt_email']
|
||||
# Create licence key
|
||||
|
Loading…
Reference in New Issue
Block a user