RED-1212: Ignore excluded redactionlog entries

This commit is contained in:
Dominique Eifländer 2021-06-17 12:59:48 +02:00
parent aac01c6866
commit 7d33b0d97e
2 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,7 @@
<dependency>
<groupId>com.iqser.red.service</groupId>
<artifactId>redaction-service-api-v1</artifactId>
<version>2.15.0</version>
<version>2.23.0</version>
<exclusions>
<exclusion>
<groupId>com.iqser.red.service</groupId>

View File

@ -23,6 +23,10 @@ public class RedactionLogConverterService {
if (entry.isRedacted()) {
if(entry.isExcluded()){
return;
}
if (entry.isRecommendation()) {
return;
}