From 50a21e046644f9628a90e9efb454506bb3733c61 Mon Sep 17 00:00:00 2001 From: JunH Date: Thu, 19 Oct 2023 18:36:24 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20(#806)=20=ED=95=84=ED=84=B0?= =?UTF-8?q?=EC=97=90=EC=84=9C=20notices=20url=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/votogether/global/jwt/JwtAuthenticationFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/java/com/votogether/global/jwt/JwtAuthenticationFilter.java b/backend/src/main/java/com/votogether/global/jwt/JwtAuthenticationFilter.java index 28667689e..315a4d1aa 100644 --- a/backend/src/main/java/com/votogether/global/jwt/JwtAuthenticationFilter.java +++ b/backend/src/main/java/com/votogether/global/jwt/JwtAuthenticationFilter.java @@ -39,7 +39,7 @@ public class JwtAuthenticationFilter extends OncePerRequestFilter { private static final Map MATCH_URI_METHOD = new HashMap<>( Map.ofEntries( Map.entry("^/posts/.+/comments$", "GET"), - Map.entry("^/notices/.*$", "GET") + Map.entry("^/notices.*$", "GET") ) );