mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-06 10:27:28 -08:00
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
|
import { License } from '@/License';
|
||
|
import Container from 'typedi';
|
||
|
|
||
|
export function isExternalSecretsEnabled() {
|
||
|
const license = Container.get(License);
|
||
|
return license.isExternalSecretsEnabled();
|
||
|
}
|