Use 'Hello world' instead of identity for notify

This commit is contained in:
Kat King
2017-04-11 09:20:33 -05:00
parent c653111018
commit 42a1db2dd9

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!")