(
req: FastifyRequest<{ Params: { projectId?: string; reportId: string } }>,
reply: FastifyReply
)
| 644 | } |
| 645 | |
| 646 | export async function getReportData( |
| 647 | req: FastifyRequest<{ Params: { projectId?: string; reportId: string } }>, |
| 648 | reply: FastifyReply |
| 649 | ) { |
| 650 | const projectId = await getProjectId(req as RequestWithProjectParam); |
| 651 | return reply.send(await getReportDataCore({ projectId, reportId: req.params.reportId, organizationId: getOrgId(req as RequestWithProjectParam) })); |
| 652 | } |
| 653 | |
| 654 | // --------------------------------------------------------------------------- |
| 655 | // Google Search Console |
nothing calls this directly
no test coverage detected