Cross Reference:
xref
: /
forgerock
/
openidm-v4
/
openidm-zip
/
src
/
main
/
resources
/
script
/
ui
/
onDetele-user-cleanup.js
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
onDetele-user-cleanup.js revision 006579fc6d904d79ff1065cc8aa5c244a00f41ab
var
userId
=
object
.
_id
;
var
findUserNotificationsParams
= {
"_queryId"
:
"notifications-for-user"
,
"userId"
:
userId
};
notificationQueryResult
=
openidm
.
query
(
"
repo
/
ui
/
notification
"
,
findUserNotificationsParams
);
if
(
notificationQueryResult
.
result
&&
notificationQueryResult
.
result
.
length
!=
0
) {
for
(
notificationPointer
in
notificationQueryResult
.
result
) {
var
notification
=
notificationQueryResult
.
result
[
notificationPointer
];
openidm
[
'delete'
](
'
repo
/
ui
/
notification
/'
+
notification
.
_id
,
notification
.
_rev
);
}
}