feat(character): 캐릭터 메인 API 추가

This commit is contained in:
2025-08-07 22:33:29 +09:00
parent b0a6fc6498
commit a1533c8e98
6 changed files with 155 additions and 2 deletions

View File

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