Skip to content

Commit

Permalink
feat: enable connector templates per default
Browse files Browse the repository at this point in the history
Related to #4455
  • Loading branch information
nikku committed Aug 26, 2024
1 parent 5ae83b9 commit 062cb8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}

Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 062cb8f

Please sign in to comment.