Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Marcellin committed Oct 5, 2023
1 parent 8a41e42 commit 589d52c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ public void deleteElement(UUID elementUuid, String userId) {
}
UUID parentUuid = getParentUuid(elementUuid);
deleteObject(elementAttributes, userId);
var isCurrentElementPrivate = elementAttributes.getAccessRights() != null ? elementAttributes.getAccessRights().isPrivate() : null;
Boolean isCurrentElementPrivate = elementAttributes.getAccessRights() != null ? elementAttributes.getAccessRights().isPrivate() : null;
Boolean isPrivate = isPrivateForNotification(parentUuid, isCurrentElementPrivate);

notificationService.emitDirectoryChanged(
Expand Down

0 comments on commit 589d52c

Please sign in to comment.