mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix the notification view internal server error issue
This commit is contained in:
parent
c7f4bba8bf
commit
9510554f67
@ -46,7 +46,7 @@ $(document).ready(function () {
|
||||
$("#ast-container").on("click", ".new-notification", function(e){
|
||||
var notificationId = $(this).data("id");
|
||||
var redirectUrl = $(this).data("url");
|
||||
var getNotificationsAPI = "/devicemgt_admin/notifications/"+notificationId+"/CHECKED";
|
||||
var getNotificationsAPI = "/api/device-mgt/v1.0/notifications/"+notificationId+"/CHECKED";
|
||||
var errorMsgWrapper = "#error-msg";
|
||||
var errorMsg = "#error-msg span";
|
||||
invokerUtil.put(
|
||||
@ -87,7 +87,7 @@ function loadNotifications(){
|
||||
var deviceListingSrc = deviceListing.attr("src");
|
||||
var currentUser = deviceListing.data("currentUser");
|
||||
$.template("notification-listing", deviceListingSrc, function (template) {
|
||||
var serviceURL = "/devicemgt_admin/notifications";
|
||||
var serviceURL = "/api/device-mgt/v1.0/notifications";
|
||||
var successCallback = function (data) {
|
||||
var viewModel = {};
|
||||
data = JSON.parse(data);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user