feat(core): Add workflow history initial setup (no-changelog) (#6852)

* feat: Add workflow history initial setup

* fix: Add feature to missing controller
This commit is contained in:
Omar Ajoue
2023-08-04 12:27:06 +02:00
committed by GitHub
parent 0511458d41
commit 63ffe67dad
4 changed files with 13 additions and 0 deletions

View File

@@ -136,6 +136,10 @@ export class License {
return this.isFeatureEnabled(LICENSE_FEATURES.SOURCE_CONTROL);
}
isWorkflowHistoryLicensed() {
return this.isFeatureEnabled(LICENSE_FEATURES.WORKFLOW_HISTORY);
}
isAPIDisabled() {
return this.isFeatureEnabled(LICENSE_FEATURES.API_DISABLED);
}