diff --git a/docs/Testing/Testing.docx b/docs/Testing/Testing.docx index 1c99199..718e4cb 100644 Binary files a/docs/Testing/Testing.docx and b/docs/Testing/Testing.docx differ diff --git a/src/repositories/projectsRepo.js b/src/repositories/projectsRepo.js index d11317d..eae1d94 100644 --- a/src/repositories/projectsRepo.js +++ b/src/repositories/projectsRepo.js @@ -161,6 +161,13 @@ export async function getFilesByProjectId(projectId, userId) { const files = await prisma.file.findMany({ where: { projectId }, + select: { + id: true, + projectId: true, + name: true, + size: true, + mimeType: true, + }, }); return files;