blob: 815a20b8b1500ef3dfb8731dd817faa25a9d1dcc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@{
ViewBag.Title = "Administration Control Panel";
}
<p>Wow, an actual index page.</p>
<button class="btn btn-default" onclick="sendMessageToApi();">Send test notification.</button>
<script>
function sendMessageToApi() {
$.ajax({ url: "/API/TestNotification" });
}
</script>
|