(
req: FastifyRequest<{ Params: { projectId?: string } }>,
reply: FastifyReply
)
| 628 | // --------------------------------------------------------------------------- |
| 629 | |
| 630 | export async function listDashboards( |
| 631 | req: FastifyRequest<{ Params: { projectId?: string } }>, |
| 632 | reply: FastifyReply |
| 633 | ) { |
| 634 | const projectId = await getProjectId(req as RequestWithProjectParam); |
| 635 | return reply.send(await listDashboardsCore({ projectId, organizationId: getOrgId(req as RequestWithProjectParam) })); |
| 636 | } |
| 637 | |
| 638 | export async function listReports( |
| 639 | req: FastifyRequest<{ Params: { projectId?: string; dashboardId: string } }>, |
nothing calls this directly
no test coverage detected