콘텐츠 메인 홈

- 로그인 없이 인기 단편 조회가 가능하도록 수정
This commit is contained in:
2025-03-22 03:16:54 +09:00
parent dc74d203bd
commit ec0252bae0
3 changed files with 46 additions and 1 deletions

View File

@@ -76,7 +76,7 @@ class SecurityConfig(
.antMatchers("/charge/ads").permitAll()
.antMatchers("/v2/audio-content/main/home").permitAll()
.antMatchers("/v2/audio-content/main/home/popular-content-by-creator").permitAll()
.antMatchers("/audio-content/ranking").permitAll()
.antMatchers("/v2/audio-content/main/home/content/ranking").permitAll()
.anyRequest().authenticated()
.and()
.build()