|
|
@ -98,6 +98,7 @@ function loadNewNotifications() {
|
|
|
|
var responsePayload = JSON.parse(data);
|
|
|
|
var responsePayload = JSON.parse(data);
|
|
|
|
|
|
|
|
|
|
|
|
if (responsePayload.notifications) {
|
|
|
|
if (responsePayload.notifications) {
|
|
|
|
|
|
|
|
viewModel.context = context;
|
|
|
|
viewModel.notifications = responsePayload.notifications;
|
|
|
|
viewModel.notifications = responsePayload.notifications;
|
|
|
|
if (responsePayload.count > 0) {
|
|
|
|
if (responsePayload.count > 0) {
|
|
|
|
$(messageSideBar).html(template(viewModel));
|
|
|
|
$(messageSideBar).html(template(viewModel));
|
|
|
@ -427,7 +428,7 @@ $(document).ready(function () {
|
|
|
|
$("#right-sidebar").on("click", ".new-notification", function () {
|
|
|
|
$("#right-sidebar").on("click", ".new-notification", function () {
|
|
|
|
var notificationId = $(this).data("id");
|
|
|
|
var notificationId = $(this).data("id");
|
|
|
|
var redirectUrl = $(this).data("url");
|
|
|
|
var redirectUrl = $(this).data("url");
|
|
|
|
var markAsReadNotificationsAPI = "/mdm-admin/notifications/" + notificationId + "/CHECKED";
|
|
|
|
var markAsReadNotificationsAPI = "/api/device-mgt/v1.0/notifications/" + notificationId + "/mark-checked";
|
|
|
|
var messageSideBar = ".sidebar-messages";
|
|
|
|
var messageSideBar = ".sidebar-messages";
|
|
|
|
|
|
|
|
|
|
|
|
invokerUtil.put(
|
|
|
|
invokerUtil.put(
|
|
|
|