fix(attachments): fix typo

This commit is contained in:
Matthieu Haineault 2025-10-31 08:35:24 -04:00
parent 8ab80fc2d8
commit c0fbad006d

View File

@ -74,7 +74,7 @@ export class AttachmentsController {
return this.prisma.attachmentVariants.findMany({ return this.prisma.attachmentVariants.findMany({
where: { attachment_id: num_id }, where: { attachment_id: num_id },
orderBy: { variant: 'asc'}, orderBy: { variant: 'asc'},
select: { variant: true, bytes: true, width: true, height: true, patch: true, created_at: true }, select: { variant: true, bytes: true, width: true, height: true, path: true, created_at: true },
}); });
} }