Skip to content
Snippets Groups Projects
Commit 4bf4f311 authored by Andreas Schindlbeck's avatar Andreas Schindlbeck
Browse files

Notification Status Prozesse auf neon.refresh()

parent 5a6f0a9a
No related branches found
No related tags found
No related merge requests found
......@@ -9,4 +9,4 @@ var selectedNotifications = JSON.parse(vars.get("$sys.selection"));
for(var i = 0; i < selectedNotifications.length; i++)
notification.updateUserNotificationState(user["name"], selectedNotifications[i], notification.STATE_CONFIRMED);
neon.refreshAll();
\ No newline at end of file
neon.refresh();
\ No newline at end of file
......@@ -9,4 +9,4 @@ var selectedNotifications = JSON.parse(vars.get("$sys.selection"));
for(var i = 0; i < selectedNotifications.length; i++)
notification.updateUserNotificationState(user["name"], selectedNotifications[i], notification.STATE_ARCHIVE);
neon.refreshAll();
\ No newline at end of file
neon.refresh();
\ No newline at end of file
......@@ -9,4 +9,4 @@ var selectedNotifications = JSON.parse(vars.get("$sys.selection"));
for(var i = 0; i < selectedNotifications.length; i++)
notification.updateUserNotificationState(user["name"], selectedNotifications[i], notification.STATE_CONFIRMED);
neon.refreshAll();
\ No newline at end of file
neon.refresh();
\ No newline at end of file
......@@ -9,4 +9,4 @@ var selectedNotifications = JSON.parse(vars.get("$sys.selection"));
for(var i = 0; i < selectedNotifications.length; i++)
notification.updateUserNotificationState(user["name"], selectedNotifications[i], notification.STATE_UNSEEN);
neon.refreshAll();
\ No newline at end of file
neon.refresh();
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment