From a1cfdb97607ae88e6a48ced30c25d45f90c19cae Mon Sep 17 00:00:00 2001 From: clean2001 Date: Tue, 16 Jul 2024 13:46:13 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20SecurityConfig=20setHttp=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layer-api/src/main/java/org/layer/config/SecurityConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layer-api/src/main/java/org/layer/config/SecurityConfig.java b/layer-api/src/main/java/org/layer/config/SecurityConfig.java index f6376fcd..43613eb7 100644 --- a/layer-api/src/main/java/org/layer/config/SecurityConfig.java +++ b/layer-api/src/main/java/org/layer/config/SecurityConfig.java @@ -48,8 +48,8 @@ private void setHttp(HttpSecurity http) throws Exception { .requestMatchers(new AntPathRequestMatcher("/api/auth/reissue-token")).permitAll() .requestMatchers(new AntPathRequestMatcher("/api/auth/sign-up")).permitAll() .requestMatchers(new AntPathRequestMatcher("/api/auth/oauth2/google")).permitAll() - .requestMatchers(new AntPathRequestMatcher("/api/test")).permitAll() .requestMatchers(new AntPathRequestMatcher("/api/auth/oauth2/kakao")).permitAll() + .requestMatchers(new AntPathRequestMatcher("/api/test")).permitAll() .requestMatchers(new AntPathRequestMatcher("/api/auth/test")).permitAll() .requestMatchers(new AntPathRequestMatcher("/h2-console/**")).permitAll() .anyRequest().authenticated()