- RMM Overshell (migration 077): admin page, dispatch UI, executor/worker, target resolver, script registry (AD/DHCP/DNS/event-log/services/software/network/loglift) - LogLift evidence pipeline (migration 078): upload webhook, B2 storage client, receiver/matcher, EventLogCollector PowerShell script - IT Glue audit + write-back (migrations 075, 076): asset-audit runner, ticket xrefs, applications/configurations browse pages + apply/revert/audit endpoints - Link-aware analyzer bundles (migration 073) + provider toggle (migration 074): link-discovery service, OpenRouter LLM provider, related-tickets/itglue-suggestion panels, analyze-bundle endpoint - Endpoint data model + device-link reconciliation (migrations 079, 080): conflicts admin page, reconciler service, resolve endpoints - Dashboard overhaul: integration-health service + alerts, overview/health endpoints - Permissions: add itglue + rmm scopes; middleware: public /api/rmm/loglift route Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
27 lines
911 B
TypeScript
27 lines
911 B
TypeScript
/**
|
|
* POST /api/sync/schedules/reload
|
|
* Stops every running cron task and re-loads from the DB. Use after seeding
|
|
* new schedule rows directly via SQL (the scheduler only seeds defaults on a
|
|
* virgin table).
|
|
*/
|
|
|
|
import { NextResponse } from 'next/server';
|
|
import { requirePermission } from '@/lib/auth-utils';
|
|
import { syncScheduler } from '@/lib/services/sync-scheduler';
|
|
|
|
export async function POST() {
|
|
const { error } = await requirePermission('admin', 'access');
|
|
if (error) return error;
|
|
|
|
try {
|
|
const result = await syncScheduler.reloadAllSchedules();
|
|
return NextResponse.json({ ok: true, ...result });
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
console.error('[SCHEDULE API] reload failed:', message);
|
|
return NextResponse.json(
|
|
{ error: 'Failed to reload schedules', details: message },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|