add ability to send back a chosen title & message

This commit is contained in:
2023-12-23 19:42:45 -07:00
parent a3d22d25f4
commit 3c0e196c11

10
app.py
View File

@@ -450,10 +450,18 @@ class WebPushService():
"auth": subscription.auth
}
}
title = "Test Notification"
if "title" in content:
title = content['title']
message = "This is a test notification."
if "message" in content:
message = content['message']
vapid_key = VAPIDKey.query.filter_by(id=subscription.vapid_key_id).first()
result = WebPushService._send_push_notification(
subscription_info,
{"title": "Test Notification", "message": "This is a test notification"},
{"title": title, "message": message},
vapid_key
)
return jsonify(