feat(home): 홈 추천 조회 컨트롤러를 추가한다

This commit is contained in:
2026-06-01 13:55:53 +09:00
parent 3df5614b7a
commit fb0f22070f
3 changed files with 299 additions and 2 deletions

View File

@@ -101,6 +101,9 @@ class SecurityConfig(
.antMatchers(HttpMethod.GET, "/api/chat/room/list").permitAll()
.antMatchers(HttpMethod.GET, "/api/chat/original/list").permitAll()
.antMatchers(HttpMethod.POST, "/charge/payverse/webhook").permitAll()
.antMatchers(HttpMethod.GET, "/api/v2/home/recommendations").permitAll()
// 페이지네이션 하위 경로(/lives, /debut-creators 등)는 인증 필수
.antMatchers(HttpMethod.GET, "/api/v2/home/recommendations/**").authenticated()
.anyRequest().authenticated()
.and()
.build()