feat(content-ranking): 오디오 랭킹 조회 endpoint를 추가한다

This commit is contained in:
2026-06-24 12:36:05 +09:00
parent 2c2607b6d0
commit af5f250abe
3 changed files with 140 additions and 0 deletions

View File

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