mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-04 17:37:28 -08:00
ed927d34b2
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Romain Minaud <romain.minaud@gmail.com> Co-authored-by: Valya Bullions <valya@n8n.io> Co-authored-by: Csaba Tuncsik <csaba@n8n.io> Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Omar Ajoue <krynble@gmail.com>
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();
|
|
}
|