Add contact data

This commit is contained in:
Dries Augustyns
2025-12-03 13:28:41 +01:00
parent d96bce75d7
commit 8defb9f8ab
9 changed files with 79 additions and 70 deletions
+1 -1
View File
@@ -6,6 +6,7 @@ import {HttpException} from '../exceptions/index.js';
import {EventService} from './EventService.js';
import {ContactService} from './ContactService.js';
import {WorkflowExecutionService} from './WorkflowExecutionService.js';
export interface PaginatedWorkflows {
workflows: Workflow[];
@@ -749,7 +750,6 @@ export class WorkflowService {
// Start executing the workflow asynchronously
// Don't await - let it run in background
const {WorkflowExecutionService} = await import('./WorkflowExecutionService.js');
WorkflowExecutionService.processStepExecution(execution.id, triggerStep.id).catch(error => {
console.error('Error executing workflow:', error);
});