Merged in feature/track-filesize (pull request #200)

track file sizes for all documents in system

* feature complete

needs dev testing
This commit is contained in:
Jay Brown
2026-01-12 17:46:07 +00:00
parent 4ad8168f35
commit ebf47c6013
37 changed files with 1514 additions and 374 deletions
+3
View File
@@ -117,6 +117,9 @@ func (s *Controllers) GetFolderDocuments(ctx echo.Context, folderId openapi_type
if doc.OriginalPath != nil {
apiDocs[i].OriginalPath = doc.OriginalPath
}
if doc.FileSizeBytes != nil {
apiDocs[i].FileSizeBytes = doc.FileSizeBytes
}
// Include text record if available
if doc.TextRecord != nil {