refactor(core): Port templates config (no-changelog) (#10103)

This commit is contained in:
Iván Ovejero 2024-07-19 10:33:28 +02:00 committed by GitHub
parent 5eca7c8e28
commit c0264f0cff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 19 additions and 3 deletions

View file

@ -0,0 +1,12 @@
import { Config, Env } from '../decorators';
@Config
export class TemplatesConfig {
/** Whether to load workflow templates. */
@Env('N8N_TEMPLATES_ENABLED')
readonly enabled: boolean = true;
/** Host to retrieve workflow templates from endpoints. */
@Env('N8N_TEMPLATES_HOST')
readonly host: string = 'https://api.n8n.io/api/';
}

View file

@ -5,6 +5,7 @@ import { EmailConfig } from './configs/email';
import { VersionNotificationsConfig } from './configs/version-notifications';
import { PublicApiConfig } from './configs/public-api';
import { ExternalSecretsConfig } from './configs/external-secrets';
import { TemplatesConfig } from './configs/templates';
@Config
class UserManagementConfig {
@ -31,4 +32,7 @@ export class GlobalConfig {
@Nested
externalSecrets: ExternalSecretsConfig;
@Nested
templates: TemplatesConfig;
}

View file

@ -90,7 +90,7 @@ export class InstanceRiskReporter implements RiskReporter {
settings.features = {
communityPackagesEnabled: config.getEnv('nodes.communityPackages.enabled'),
versionNotificationsEnabled: this.globalConfig.versionNotifications.enabled,
templatesEnabled: config.getEnv('templates.enabled'),
templatesEnabled: this.globalConfig.templates.enabled,
publicApiEnabled: isApiEnabled(),
};

View file

@ -161,8 +161,8 @@ export class FrontendService {
logLevel: config.getEnv('logs.level'),
hiringBannerEnabled: config.getEnv('hiringBanner.enabled'),
templates: {
enabled: config.getEnv('templates.enabled'),
host: config.getEnv('templates.host'),
enabled: this.globalConfig.templates.enabled,
host: this.globalConfig.templates.host,
},
executionMode: config.getEnv('executions.mode'),
pushBackend: config.getEnv('push.backend'),