Skip to content

Commit

Permalink
Merge pull request #11 from eyaljoyous/dev
Browse files Browse the repository at this point in the history
Enabled a few more FFs
  • Loading branch information
omrijoyous authored Jun 14, 2023
2 parents 8113ddd + a85c038 commit 625ec13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/cli/src/License.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ export class License {
}

isSharingEnabled() {
return this.isFeatureEnabled(LICENSE_FEATURES.SHARING);
return true;
}

isLogStreamingEnabled() {
return this.isFeatureEnabled(LICENSE_FEATURES.LOG_STREAMING);
return true;
}

isLdapEnabled() {
Expand All @@ -126,7 +126,7 @@ export class License {
}

isVariablesEnabled() {
return this.isFeatureEnabled(LICENSE_FEATURES.VARIABLES);
return true;
}

isVersionControlLicensed() {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/config/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export const schema = {
saveExecutionProgress: {
doc: 'Whether or not to save progress for each node executed',
format: 'Boolean',
default: false,
default: true,
env: 'EXECUTIONS_DATA_SAVE_ON_PROGRESS',
},

Expand Down

0 comments on commit 625ec13

Please sign in to comment.