From 2dd739e4cc98b4ddcbbf1710f45a6dc20b0de300 Mon Sep 17 00:00:00 2001 From: kappa Date: Mon, 26 Jan 2026 00:42:24 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20sync=20=EA=B8=B0=EB=B3=B8=EA=B0=92?= =?UTF-8?q?=EC=9D=84=20=EC=A0=84=EC=B2=B4=20provider=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ['linode'] → ['linode', 'vultr', 'aws'] Co-Authored-By: Claude Opus 4.5 --- src/routes/sync.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/sync.ts b/src/routes/sync.ts index 12dd453..99fa017 100644 --- a/src/routes/sync.ts +++ b/src/routes/sync.ts @@ -73,8 +73,8 @@ export async function handleSync( body = parseResult.data; } - // Validate providers array (default to ['linode'] if not provided) - const providers = body.providers || ['linode']; + // Validate providers array (default to all providers if not provided) + const providers = body.providers || ['linode', 'vultr', 'aws']; const providerResult = validateProviders(providers, SUPPORTED_PROVIDERS); if (!providerResult.success) {