From 54efdc2234b00170761be85dee59c015fea57e3b Mon Sep 17 00:00:00 2001 From: Heekyeong Park Date: Sun, 29 Oct 2023 21:39:07 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20=EC=82=AC=EC=9A=A9=EC=9E=90=20?= =?UTF-8?q?=EC=9D=B8=EC=A6=9D=EC=9D=B4=20=ED=95=84=EC=9A=94=EC=97=86?= =?UTF-8?q?=EB=8A=94=20url=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/techeer/checkIt/global/config/SecurityConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/techeer/checkIt/global/config/SecurityConfig.java b/src/main/java/com/techeer/checkIt/global/config/SecurityConfig.java index 4097fcb..ba765e6 100644 --- a/src/main/java/com/techeer/checkIt/global/config/SecurityConfig.java +++ b/src/main/java/com/techeer/checkIt/global/config/SecurityConfig.java @@ -41,7 +41,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti .and() .authorizeRequests() .antMatchers("/api/v1/users/join", "/api/v1/users/login", "/api/v1/users/duplicated/**", - "/api/v1/books/search").permitAll() // 회원가입, 로그인, 검색 API는 인증 없이 허용 + "/api/v1/books/search", "/api/v1/books/like", "/api/v1/books/new").permitAll() // 회원가입, 로그인, 검색 API는 인증 없이 허용 .antMatchers("/swagger-ui/**", "/swagger-resources/**", "/v3/api-docs").permitAll() .anyRequest().authenticated() .and()