fix(dashboard): able to filter on event names

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-04-16 11:36:54 +02:00
parent be3c18b677
commit bfa1ee70e6
2 changed files with 7 additions and 1 deletions

View File

@@ -82,6 +82,7 @@ export const eventRouter = createTRPCRouter({
filters: z.array(zChartEventFilter).default([]),
startDate: z.date().optional(),
endDate: z.date().optional(),
events: z.array(z.string()).optional(),
}),
)
.query(async ({ input }) => {