Skip to content

Commit

Permalink
Disables features again
Browse files Browse the repository at this point in the history
  • Loading branch information
andyjoyous committed Jul 24, 2024
1 parent ce29e42 commit 4ae6b5b
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions packages/cli/src/License.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,75 +234,75 @@ export class License {
}

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

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

isLdapEnabled() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.LDAP);
}

isSamlEnabled() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.SAML);
}

isAdvancedExecutionFiltersEnabled() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.ADVANCED_EXECUTION_FILTERS);
}

isAdvancedPermissionsLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.ADVANCED_PERMISSIONS);
}

isDebugInEditorLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.DEBUG_IN_EDITOR);
}

isBinaryDataS3Licensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.BINARY_DATA_S3);
}

isMultipleMainInstancesLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.MULTIPLE_MAIN_INSTANCES);
}

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

isSourceControlLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.SOURCE_CONTROL);
}

isExternalSecretsEnabled() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.EXTERNAL_SECRETS);
}

isWorkflowHistoryLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.WORKFLOW_HISTORY);
}

isAPIDisabled() {
return this.isFeatureEnabled(LICENSE_FEATURES.API_DISABLED);
}

isWorkerViewLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.WORKER_VIEW);
}

isProjectRoleAdminLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.PROJECT_ROLE_ADMIN);
}

isProjectRoleEditorLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.PROJECT_ROLE_EDITOR);
}

isProjectRoleViewerLicensed() {
return true;
return this.isFeatureEnabled(LICENSE_FEATURES.PROJECT_ROLE_VIEWER);
}

getCurrentEntitlements() {
Expand Down

0 comments on commit 4ae6b5b

Please sign in to comment.