콘텐츠 메인 홈

- 로그인 없이 조회가 가능하도록 수정
This commit is contained in:
2025-03-22 00:52:34 +09:00
parent d45a25258e
commit 519c63a023
6 changed files with 75 additions and 44 deletions

View File

@@ -74,6 +74,8 @@ class SecurityConfig(
.antMatchers("/stplat/terms_of_service").permitAll()
.antMatchers("/stplat/privacy_policy").permitAll()
.antMatchers("/charge/ads").permitAll()
.antMatchers("/v2/audio-content/main/home").permitAll()
.antMatchers("/v2/audio-content/main/home/popular-content-by-creator").permitAll()
.anyRequest().authenticated()
.and()
.build()