refactor(core): Move migrations to @n8n/db (#15362)

This commit is contained in:
Iván Ovejero
2025-05-14 11:46:48 +02:00
committed by GitHub
parent 44ecad5883
commit 249b7f8556
223 changed files with 344 additions and 339 deletions

View File

@@ -1,10 +1,9 @@
import type { LdapConfig } from '@n8n/constants';
import { LDAP_DEFAULT_CONFIGURATION, LDAP_FEATURE_NAME } from '@n8n/constants';
import { SettingsRepository } from '@n8n/db';
import { Container } from '@n8n/di';
import { jsonParse } from 'n8n-workflow';
import { LDAP_DEFAULT_CONFIGURATION, LDAP_FEATURE_NAME } from '@/ldap.ee/constants';
import type { LdapConfig } from '@/ldap.ee/types';
export const defaultLdapConfig = {
...LDAP_DEFAULT_CONFIGURATION,
loginEnabled: true,