Merge pull request #10 from TwilioDevEd/DEVED-2347

Use 'Hello world' instead of identity for notify
This commit is contained in:
Kat King
2017-04-11 10:43:29 -05:00
committed by GitHub

2
app.py
View File

@@ -132,7 +132,7 @@ def send_notification():
identity = request.form.get('identity')
notification = service.notifications.create(
identity=identity,
body='Hello ' + identity + '!'
body='Hello world!'
)
return jsonify(message="Notification created!")