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
@@ -107,6 +107,9 @@ func (s *Controllers) GetDocument(ctx echo.Context, id DocumentID, params GetDoc
if document.OriginalPath != nil {
response.OriginalPath = document.OriginalPath
}
if document.FileSizeBytes != nil {
response.FileSizeBytes = document.FileSizeBytes
}
// Include text record if requested and available
if document.TextRecord != nil {