Compare commits

...

2 Commits

View File

@@ -19,7 +19,7 @@ export async function GET() {
const reports = await prisma.report.findMany({
where,
include: { tasks: true },
include: { tasks: true, user: true },
orderBy: { date: "desc" },
});