feat(home-following): 팔로잉 탭 공개 endpoint를 추가한다

This commit is contained in:
2026-06-25 22:14:43 +09:00
parent e4052d097a
commit cbcd87875c
4 changed files with 149 additions and 0 deletions

View File

@@ -106,6 +106,7 @@ class SecurityConfig(
.antMatchers(HttpMethod.GET, "/api/v2/audio/contents").permitAll()
.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()
// 페이지네이션 하위 경로(/lives, /debut-creators 등)는 인증 필수
.antMatchers(HttpMethod.GET, "/api/v2/home/recommendations/**").authenticated()
.anyRequest().authenticated()