Skip to content

Commit e8d8100

Browse files
authored
Update SecurityConfig.java : 전에 잘못 수정함
1 parent 4db118f commit e8d8100

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/example/FixLog/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3636
.requestMatchers(HttpMethod.GET, "/members/check-email").permitAll()
3737
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
3838
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()
39-
.requestMatchers(HttpMethod.GET, "/members/**").permitAll()
39+
.requestMatchers(HttpMethod.GET, "/main/**").permitAll()
4040
.requestMatchers(HttpMethod.GET, "/test", "/test/**").permitAll() // 테스트용 허용
4141
.anyRequest().authenticated()
4242
)

0 commit comments

Comments
 (0)