From 4bf4f3113903a2433a1f4fccb8b545848c3dcf5c Mon Sep 17 00:00:00 2001
From: "a.schindlbeck" <a.schindlbeck@adito.de>
Date: Thu, 9 May 2019 11:47:26 +0200
Subject: [PATCH] Notification Status Prozesse auf neon.refresh()

---
 .../entityfields/rowclickaction/onActionProcess.js              | 2 +-
 .../setnotificationstate/children/archieve/onActionProcess.js   | 2 +-
 .../setnotificationstate/children/setread/onActionProcess.js    | 2 +-
 .../setnotificationstate/children/setunread/onActionProcess.js  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/entity/Notification_entity/entityfields/rowclickaction/onActionProcess.js b/entity/Notification_entity/entityfields/rowclickaction/onActionProcess.js
index c58075c3e25..0301ae731e4 100644
--- a/entity/Notification_entity/entityfields/rowclickaction/onActionProcess.js
+++ b/entity/Notification_entity/entityfields/rowclickaction/onActionProcess.js
@@ -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
diff --git a/entity/Notification_entity/entityfields/setnotificationstate/children/archieve/onActionProcess.js b/entity/Notification_entity/entityfields/setnotificationstate/children/archieve/onActionProcess.js
index 48b80068317..1fd5fdb0b68 100644
--- a/entity/Notification_entity/entityfields/setnotificationstate/children/archieve/onActionProcess.js
+++ b/entity/Notification_entity/entityfields/setnotificationstate/children/archieve/onActionProcess.js
@@ -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
diff --git a/entity/Notification_entity/entityfields/setnotificationstate/children/setread/onActionProcess.js b/entity/Notification_entity/entityfields/setnotificationstate/children/setread/onActionProcess.js
index c58075c3e25..0301ae731e4 100644
--- a/entity/Notification_entity/entityfields/setnotificationstate/children/setread/onActionProcess.js
+++ b/entity/Notification_entity/entityfields/setnotificationstate/children/setread/onActionProcess.js
@@ -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
diff --git a/entity/Notification_entity/entityfields/setnotificationstate/children/setunread/onActionProcess.js b/entity/Notification_entity/entityfields/setnotificationstate/children/setunread/onActionProcess.js
index c56286bb565..3264ec2f2ab 100644
--- a/entity/Notification_entity/entityfields/setnotificationstate/children/setunread/onActionProcess.js
+++ b/entity/Notification_entity/entityfields/setnotificationstate/children/setunread/onActionProcess.js
@@ -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
-- 
GitLab