We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4ac922 commit 4db118fCopy full SHA for 4db118f
1 file changed
src/main/java/com/example/FixLog/config/SecurityConfig.java
@@ -36,6 +36,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
36
.requestMatchers(HttpMethod.GET, "/members/check-email").permitAll()
37
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
38
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()
39
+ .requestMatchers(HttpMethod.GET, "/members/**").permitAll()
40
.requestMatchers(HttpMethod.GET, "/test", "/test/**").permitAll() // 테스트용 허용
41
.anyRequest().authenticated()
42
)
0 commit comments