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

@@ -0,0 +1,7 @@
import { License } from '@/License';
import Container from 'typedi';
export function isWorkflowHistoryLicensed() {
const license = Container.get(License);
return license.isWorkflowHistoryLicensed();
}