fix(home-live): 현재 진행 중 라이브 인증 정책을 검증한다

This commit is contained in:
2026-06-27 00:47:10 +09:00
parent e0df436fd9
commit 107e6de3eb
3 changed files with 210 additions and 24 deletions

View File

@@ -107,6 +107,7 @@ class SecurityConfig(
.antMatchers(HttpMethod.GET, "/api/v2/audio/rankings").permitAll()
.antMatchers(HttpMethod.GET, "/api/v2/home/rankings/creators").permitAll()
.antMatchers(HttpMethod.GET, "/api/v2/home/following").permitAll()
.antMatchers(HttpMethod.GET, "/api/v2/home/on-air-lives").authenticated()
// 페이지네이션 하위 경로(/lives, /debut-creators 등)는 인증 필수
.antMatchers(HttpMethod.GET, "/api/v2/home/recommendations/**").authenticated()
.anyRequest().authenticated()