()
| 4429 | }; |
| 4430 | |
| 4431 | const queueGatewayCleanupJob = async () => { |
| 4432 | const data = await apiPost('/api/pro/gateways/jobs/cleanup.php', {}); |
| 4433 | setMcpJobsStatus( |
| 4434 | tf('gateway_job_queued', 'Job queued: {id}').replace('{id}', String(data?.jobId || '0')), |
| 4435 | 'success' |
| 4436 | ); |
| 4437 | }; |
| 4438 | |
| 4439 | const queueMcpAutotagJob = async () => { |
| 4440 | const mcpUserId = String(mcpAutotagUserEl?.value || '').trim(); |
no test coverage detected