From 840753236b0bce80172793a9388710977ec484b6 Mon Sep 17 00:00:00 2001 From: teddy Date: Mon, 19 Jan 2026 21:41:46 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B6=94=EB=A1=A0=EA=B2=B0=EA=B3=BC=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EB=8B=A4=EC=9A=B4=EB=A1=9C=EB=93=9C=20?= =?UTF-8?q?=EC=9D=B4=EB=A0=A5=20=EC=A1=B0=ED=9A=8C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../postgres/repository/log/AuditLogRepositoryImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java index 35825e0f..30b391ca 100644 --- a/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java +++ b/src/main/java/com/kamco/cd/kamcoback/postgres/repository/log/AuditLogRepositoryImpl.java @@ -167,12 +167,14 @@ public class AuditLogRepositoryImpl extends QuerydslRepositorySupport BooleanBuilder whereBuilder = new BooleanBuilder(); whereBuilder.and(auditLogEntity.eventStatus.ne(EventStatus.valueOf("FAILED"))); + whereBuilder.and(auditLogEntity.eventType.eq(EventType.valueOf("DOWNLOAD"))); if (req.getMenuId() != null && !req.getMenuId().isEmpty()) { whereBuilder.and(auditLogEntity.menuUid.eq(req.getMenuId())); } if (req.getUuid() != null) { + whereBuilder.and(auditLogEntity.requestUri.contains("/api/inference/download/")); whereBuilder.and(auditLogEntity.requestUri.endsWith(String.valueOf(req.getUuid()))); }