feat: 사이트 검사 동시 검사 수 설정 추가

- 기본값 2→4로 변경, 사용자가 [1, 2, 4, 8] 중 선택 가능
- 백엔드: concurrency 파라미터 추가 (API → 서비스 → Semaphore)
- 프론트: 드롭다운에 "동시 검사 수" 옵션 UI 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jungwoo choi
2026-02-13 17:44:22 +09:00
parent c440f1c332
commit 1e50b72fd8
6 changed files with 48 additions and 9 deletions

View File

@ -157,7 +157,8 @@ class ApiClient {
async startSiteInspection(
url: string,
maxPages?: number,
maxDepth?: number
maxDepth?: number,
concurrency?: number
): Promise<StartSiteInspectionResponse> {
return this.request("/api/site-inspections", {
method: "POST",
@ -165,6 +166,7 @@ class ApiClient {
url,
max_pages: maxPages,
max_depth: maxDepth,
concurrency: concurrency,
}),
});
}