From 062cb8f05e8a37ceb8269fa77f8747a404234bd6 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Thu, 22 Aug 2024 12:23:57 +0200 Subject: [PATCH] feat: enable connector templates per default Related to https://github.com/camunda/camunda-modeler/issues/4455 --- app/lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/index.js b/app/lib/index.js index 69660f6920..ba83099f3a 100644 --- a/app/lib/index.js +++ b/app/lib/index.js @@ -630,7 +630,7 @@ function bootstrap() { // (3) config const ignoredPaths = []; - if (!flags.get('enable-connector-templates', false)) { + if (!flags.get('enable-connector-templates', true)) { ignoredPaths.push(getConnectorTemplatesPath(userPath)); } @@ -693,7 +693,7 @@ function bootstrap() { const zeebeAPI = new ZeebeAPI({ readFile }, ZeebeNode, flags); // (10) connector templates - if (flags.get('enable-connector-templates', false)) { + if (flags.get('enable-connector-templates', true)) { registerConnectorTemplateUpdater(renderer, userPath); }