mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-09-27 04:01:44 +02:00
8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import Container from 'typedi';
|
|
import { License } from '../../License';
|
|
|
|
export function isVersionControlEnabled() {
|
|
const license = Container.get(License);
|
|
return license.isVersionControlEnabled();
|
|
}
|