feat(series-all-home): 시리즈 전체보기 홈 탭 - 추천 시리즈 UI 추가

This commit is contained in:
Yu Sung
2025-11-15 03:04:25 +09:00
parent daca685ea2
commit 43629a27b8
4 changed files with 142 additions and 29 deletions

View File

@@ -21,4 +21,13 @@ class SeriesMainRepository {
)
)
}
func getRecommendSeriesList() -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(
.getRecommendSeriesList(
isAdultContentVisible: UserDefaults.isAdultContentVisible(),
contentType: ContentType(rawValue: UserDefaults.string(forKey: .contentPreference)) ?? ContentType.ALL
)
)
}
}