🚚 rename integration API applyBlueprint to apply JSON blueprint and the UI applyBlueprint to apply YAML blueprint

This commit is contained in:
Fred KISSIE
2025-10-29 03:08:48 +01:00
parent 4c567cf2d7
commit 10ce732b8d
6 changed files with 33 additions and 64 deletions

View File

@@ -1,5 +1,6 @@
import * as site from "./site";
import * as org from "./org";
import * as blueprints from "./blueprints";
import * as resource from "./resource";
import * as domain from "./domain";
import * as target from "./target";
@@ -663,5 +664,5 @@ authenticated.put(
"/org/:orgId/blueprint",
verifyApiKeyOrgAccess,
verifyApiKeyHasAction(ActionsEnum.applyBlueprint),
org.applyBlueprint
blueprints.applyJSONBlueprint
);