From 72325a775c4825d0ec3dcadfa42e426edcfc4b51 Mon Sep 17 00:00:00 2001 From: Koray Erkan Date: Wed, 25 Feb 2026 15:49:21 +0300 Subject: [PATCH 1/2] Add targets-create demo and update management documentation --- demos.json | 1 + docs/configuration/targets/management.mdx | 2 ++ 2 files changed, 3 insertions(+) diff --git a/demos.json b/demos.json index 6b1a8e27..98990189 100644 --- a/demos.json +++ b/demos.json @@ -8,6 +8,7 @@ "clusters-create": "cmk5d6u1y000004k06x5q5c4g", "clusters-manage": "cmlt74lou000604joclwi40p7", "devices-create": "cmkdpnivn000004jr7jtghtww", + "targets-create": "cmm20nqiu000104l81g57fzig", "onboarding": "cml958r58000204jp25ip65q7", "settings-company": "cmlkotkwb002304iffzn99t07", "settings-subscription": "cmlkimp2y000004l8gmm50235", diff --git a/docs/configuration/targets/management.mdx b/docs/configuration/targets/management.mdx index 593526de..586c6343 100644 --- a/docs/configuration/targets/management.mdx +++ b/docs/configuration/targets/management.mdx @@ -64,6 +64,8 @@ Each target row provides an **Actions menu** (⋮) with the following operations ## Create Wizard + + The target creation process uses a multi-step wizard with target-specific configuration. Target wizards have different numbers of steps (3 or 4) depending on the target type. Each step is labeled with its specific name rather than a generic step number. From c7882f76485833fcc971f11b3fad7ae65d501730 Mon Sep 17 00:00:00 2001 From: Koray Erkan Date: Wed, 25 Feb 2026 15:50:49 +0300 Subject: [PATCH 2/2] Rename validate-demo plugin to validate-demos and implement validation logic for demo IDs --- docusaurus.config.ts | 2 +- plugins/{validate-demo => validate-demos}/index.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename plugins/{validate-demo => validate-demos}/index.ts (100%) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 25fe13ca..2a24c606 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -92,7 +92,7 @@ const config: Config = { require.resolve('./plugins/validate-topics'), require.resolve('./plugins/validate-images'), require.resolve('./plugins/validate-includes'), - require.resolve('./plugins/validate-demo'), + require.resolve('./plugins/validate-demos'), ], themeConfig: { image: "telemetry-color.jpg", diff --git a/plugins/validate-demo/index.ts b/plugins/validate-demos/index.ts similarity index 100% rename from plugins/validate-demo/index.ts rename to plugins/validate-demos/index.ts