n8n
Version:
n8n Workflow Automation Tool
11 lines • 445 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isFormOAuth2Enabled = isFormOAuth2Enabled;
exports.isWebhookOAuth2Enabled = isWebhookOAuth2Enabled;
function isFormOAuth2Enabled() {
return process.env.N8N_ENV_FEAT_FORM_TRIGGER_OAUTH2 === 'true';
}
function isWebhookOAuth2Enabled() {
return process.env.N8N_ENV_FEAT_WEBHOOK_PRIVATE_CREDENTIALS === 'true';
}
//# sourceMappingURL=oauth2-triggers.js.map