소스 검색

feat: increase ad retrieval limit in login response

Dave 1 개월 전
부모
커밋
b71a85079d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      apps/box-app-api/src/feature/auth/auth.service.ts

+ 1 - 1
apps/box-app-api/src/feature/auth/auth.service.ts

@@ -102,7 +102,7 @@ export class AuthService {
 
     // 5) startupAds (placeholder: you’ll wire channel-specific ads later)
     // For now return null to keep behaviour deterministic.
-    const startupAds = await this.adService.listAdsByType(1, 20);
+    const startupAds = await this.adService.listAdsByType(1, 500);
 
     return {
       uid,