From 82bc6d48e5fa4d7feefe4790f09829e2fa39c7c5 Mon Sep 17 00:00:00 2001 From: joowojr Date: Tue, 4 Feb 2025 09:02:18 +0900 Subject: [PATCH 1/4] =?UTF-8?q?CLAP-251=20Fix:=20swagger=20=EC=97=94?= =?UTF-8?q?=EB=93=9C=ED=8F=AC=EC=9D=B8=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inbound/security/filter/JwtAuthenticationFilter.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/clap/server/adapter/inbound/security/filter/JwtAuthenticationFilter.java b/src/main/java/clap/server/adapter/inbound/security/filter/JwtAuthenticationFilter.java index bb8a27c0..17efeeeb 100644 --- a/src/main/java/clap/server/adapter/inbound/security/filter/JwtAuthenticationFilter.java +++ b/src/main/java/clap/server/adapter/inbound/security/filter/JwtAuthenticationFilter.java @@ -49,7 +49,8 @@ protected void doFilterInternal( @NotNull FilterChain filterChain ) throws ServletException, IOException { try { - if (Arrays.asList(PUBLIC_ENDPOINTS).contains(request.getRequestURI())) { + if (Arrays.asList(PUBLIC_ENDPOINTS).contains(request.getRequestURI()) || + Arrays.asList(SWAGGER_ENDPOINTS).contains(request.getRequestURI())) { filterChain.doFilter(request, response); return; } From cb7794164a9eb0de567a68d2a1db4322e247e1b2 Mon Sep 17 00:00:00 2001 From: joowojr Date: Tue, 4 Feb 2025 10:05:13 +0900 Subject: [PATCH 2/4] =?UTF-8?q?CLAP-239=20Feat:=20=EC=B9=B4=ED=85=8C?= =?UTF-8?q?=EA=B3=A0=EB=A6=AC=20=ED=95=84=ED=84=B0=EB=A5=BC=20=EB=B0=B0?= =?UTF-8?q?=EC=97=B4=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit