From 9e423806dffed421ac70a1e27434611270b1e796 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Tue, 3 Feb 2026 14:06:42 -0500 Subject: [PATCH] feat(hosted-file): add filename_no_ext and filename_w_ext to Hosted_File_Base model --- app/models/hosted_file_models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/hosted_file_models.py b/app/models/hosted_file_models.py index 213533a..c20de4a 100644 --- a/app/models/hosted_file_models.py +++ b/app/models/hosted_file_models.py @@ -27,6 +27,8 @@ class Hosted_File_Base(BaseModel): subdirectory_path: Optional[str] = Field(None, exclude=True) # NOTE: This will frequently only contain numbers, but it still needs to be a string filename: Optional[str] + filename_no_ext: Optional[str] + filename_w_ext: Optional[str] extension: Optional[str] content_type: Optional[str] mimetype: Optional[str]