(
req: FastifyRequest<{ Params: { projectId?: string }; Querystring: z.infer<typeof zSessionsQuery> }>,
reply: FastifyReply
)
| 580 | }); |
| 581 | |
| 582 | export async function querySessions( |
| 583 | req: FastifyRequest<{ Params: { projectId?: string }; Querystring: z.infer<typeof zSessionsQuery> }>, |
| 584 | reply: FastifyReply |
| 585 | ) { |
| 586 | const projectId = await getProjectId(req as RequestWithProjectParam); |
| 587 | return reply.send(await querySessionsCore({ projectId, ...req.query })); |
| 588 | } |
| 589 | |
| 590 | // --------------------------------------------------------------------------- |
| 591 | // Groups |
nothing calls this directly
no test coverage detected