refactor(core): Do not import BaseCommand outside src/commands (no-changelog) (#7008)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-08-25 00:17:00 +02:00
committed by GitHub
parent fb05afa165
commit 72f65dcdd6
5 changed files with 8 additions and 6 deletions

View File

@@ -15,7 +15,6 @@ import { Credentials, UserSettings } from 'n8n-core';
import type { IWorkflowToImport } from '@/Interfaces';
import type { ExportableCredential } from './types/exportableCredential';
import type { Variables } from '@db/entities/Variables';
import { UM_FIX_INSTRUCTION } from '@/commands/BaseCommand';
import { SharedCredentials } from '@db/entities/SharedCredentials';
import type { WorkflowTagMapping } from '@db/entities/WorkflowTagMapping';
import type { TagEntity } from '@db/entities/TagEntity';
@@ -28,6 +27,7 @@ import type { SourceControlledFile } from './types/sourceControlledFile';
import { RoleService } from '@/services/role.service';
import { VariablesService } from '../variables/variables.service';
import { TagRepository } from '@/databases/repositories';
import { UM_FIX_INSTRUCTION } from '@/constants';
@Service()
export class SourceControlImportService {