From 769eb623ad9ba11d63b27457e1fbafe01b6a64bc Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Mon, 26 Aug 2024 09:35:37 +0200 Subject: [PATCH] chore: rename flag to `disable-connector-templates` --- 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 ba83099f3a..f3a9e15e0c 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', true)) { + if (flags.get('disable-connector-templates', false)) { 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', true)) { + if (!flags.get('disable-connector-templates', false)) { registerConnectorTemplateUpdater(renderer, userPath); }