feat: thread iconSize through jobRepository

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 10:13:15 +02:00
co-authored by Claude Sonnet 5
parent 1ff660a3d2
commit be43eac13a
2 changed files with 13 additions and 0 deletions
+2
View File
@@ -13,6 +13,7 @@ const jobSelect = {
inputSizeBytes: true,
outputSizeBytes: true,
quality: true,
iconSize: true,
conversionDurationSeconds: true,
errorMessage: true,
createdAt: true,
@@ -34,6 +35,7 @@ export async function createJob(prisma, job) {
inputSizeBytes: job.inputSizeBytes,
expiresAt: job.expiresAt,
quality: job.quality ?? null,
iconSize: job.iconSize ?? null,
},
});
}