From 29edd70f449780962d6668eaf149f6d96de31d60 Mon Sep 17 00:00:00 2001 From: Hamza Hasan Ellahie Date: Tue, 3 Feb 2026 20:00:25 +0500 Subject: [PATCH] pass in edoc_status_download on creation --- flexus_client_kit/ckit_edoc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flexus_client_kit/ckit_edoc.py b/flexus_client_kit/ckit_edoc.py index 7fe5ba1d..3b16817c 100644 --- a/flexus_client_kit/ckit_edoc.py +++ b/flexus_client_kit/ckit_edoc.py @@ -124,6 +124,7 @@ async def edoc_create( edoc_title: str, edoc_size_bytes: int, edoc_icon: Optional[str] = None, + edoc_status_download: str = "EDOC_FOUND" ) -> bool: if not edoc_icon: ext = edoc_title.split(".")[-1].lower() if "." in edoc_title else "" @@ -137,7 +138,7 @@ async def edoc_create( "edoc_title": edoc_title, "edoc_mtime": 0, "edoc_size_bytes": edoc_size_bytes, - "edoc_status_download": "EDOC_FOUND", + "edoc_status_download": edoc_status_download, "edoc_status_graphdb": "", "edoc_status_vectordb": "", }