diff --git a/static/notify/notify.js b/static/notify/notify.js index 7e7eb3a..2829b02 100644 --- a/static/notify/notify.js +++ b/static/notify/notify.js @@ -2,11 +2,12 @@ $(function() { $('#sendNotificationButton').on('click', function() { $.post('/send-notification', { - identity: $('#identityInput').val() + identity: $('#identityInput').val(), + body: "Hello, World!" }, function(response) { $('#identityInput').val(''); $('#message').html(response.message); console.log(response); }); }); -}); \ No newline at end of file +});