mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
5156313074
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
23 lines
693 B
TypeScript
23 lines
693 B
TypeScript
import type { Workflow } from 'n8n-workflow';
|
|
import Container from 'typedi';
|
|
|
|
import { StatisticsNames, type WorkflowStatistics } from '@/databases/entities/workflow-statistics';
|
|
import { WorkflowStatisticsRepository } from '@/databases/repositories/workflow-statistics.repository';
|
|
|
|
export async function createWorkflowStatisticsItem(
|
|
workflowId: Workflow['id'],
|
|
data?: Partial<WorkflowStatistics>,
|
|
) {
|
|
const entity = Container.get(WorkflowStatisticsRepository).create({
|
|
count: 0,
|
|
latestEvent: new Date().toISOString(),
|
|
name: StatisticsNames.manualSuccess,
|
|
...(data ?? {}),
|
|
workflowId,
|
|
});
|
|
|
|
await Container.get(WorkflowStatisticsRepository).insert(entity);
|
|
|
|
return entity;
|
|
}
|