feat: invoice generator

This commit is contained in:
Vasily Zubarev
2025-05-07 14:53:13 +02:00
parent 287abbb219
commit 8b5a2e8056
59 changed files with 2606 additions and 124 deletions

View File

@@ -26,7 +26,7 @@ export async function GET(request: Request, { params }: { params: Promise<{ file
}
// Check if file exists on disk
const fullFilePath = await fullPathForFile(user, file)
const fullFilePath = fullPathForFile(user, file)
const isFileExists = await fileExists(fullFilePath)
if (!isFileExists) {
return new NextResponse(`File not found on disk: ${file.path}`, { status: 404 })