From 31bcb071c52ead6fd8cfd4c2dcfea4a884e5a287 Mon Sep 17 00:00:00 2001 From: JungTae Kwon Date: Mon, 30 Sep 2024 12:26:41 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B2=BD=EB=A1=9C=EC=97=90=20=EC=A0=95?= =?UTF-8?q?=EA=B7=9C=ED=91=9C=ED=98=84=EC=8B=9D=20=EC=B6=94=EA=B0=80=20(#1?= =?UTF-8?q?64)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/soongsil/CoffeeChat/config/SecurityConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/soongsil/CoffeeChat/config/SecurityConfig.java b/src/main/java/com/soongsil/CoffeeChat/config/SecurityConfig.java index 377377b..cc650c6 100644 --- a/src/main/java/com/soongsil/CoffeeChat/config/SecurityConfig.java +++ b/src/main/java/com/soongsil/CoffeeChat/config/SecurityConfig.java @@ -82,7 +82,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { .requestMatchers(HttpMethod.OPTIONS, "/**").permitAll() // 모든 OPTIONS 요청에 대해 인증을 요구하지 않음 .requestMatchers("/health-check", "/", "/auth/reissue/**", "/security-check").permitAll() .requestMatchers("/api/v2/users/**", "/auth/**").hasRole("USER") - .requestMatchers(("/auth/reissue/mobile")).permitAll() + .requestMatchers(("/auth/reissue/mobile/**")).permitAll() .requestMatchers("/api/v2/possibleDates/**").hasAnyRole("MENTOR", "MENTEE") .requestMatchers("/api/v2/mentors/**").hasAnyRole("MENTOR", "MENTEE") .requestMatchers("/api/v2/applications/**").hasAnyRole("MENTOR", "MENTEE")