fix bot events

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-03-01 10:20:27 +01:00
parent 94614f1217
commit 4cc2f7a329
2 changed files with 6 additions and 2 deletions

View File

@@ -320,6 +320,7 @@ export async function getEventsCount({
interface CreateBotEventPayload {
name: string;
type: string;
path: string;
projectId: string;
createdAt: Date;
}
@@ -329,14 +330,17 @@ export function createBotEvent({
type,
projectId,
createdAt,
path,
}: CreateBotEventPayload) {
return ch.insert({
table: 'events_bots',
format: 'JSONEachRow',
values: [
{
name,
type,
project_id: projectId,
path,
created_at: formatClickhouseDate(createdAt),
},
],