feat(securityConfig): 아래 API는 로그인 하지 않아도 조회할 수 있도록 수정

- /api/chat/list
This commit is contained in:
Klaus 2025-08-08 17:31:21 +09:00
parent 5d1c5fcc44
commit b819df9656
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ class SecurityConfig(
.antMatchers("/ad-tracking/app-launch").permitAll()
.antMatchers(HttpMethod.GET, "/notice/latest").permitAll()
.antMatchers(HttpMethod.GET, "/api/chat/character/main").permitAll()
.antMatchers(HttpMethod.GET, "/api/chat/list").permitAll()
.anyRequest().authenticated()
.and()
.build()