배치 수정 페이지 저장 및 API 미리보기 버그 수정

This commit is contained in:
dohyeons
2025-12-05 10:16:23 +09:00
parent 58ca340699
commit b6a7b4a93b
3 changed files with 22 additions and 22 deletions

View File

@@ -328,6 +328,10 @@ export class BatchService {
updateFields.push(`auth_service_name = $${paramIndex++}`);
updateValues.push(data.authServiceName || null);
}
if (data.dataArrayPath !== undefined) {
updateFields.push(`data_array_path = $${paramIndex++}`);
updateValues.push(data.dataArrayPath || null);
}
// 배치 설정 업데이트
const batchConfigResult = await client.query(