refac
Co-Authored-By: Hsienz <55347238+hsienz@users.noreply.github.com>
This commit is contained in:
@@ -282,7 +282,11 @@ def upload_file_handler(
|
||||
},
|
||||
"meta": {
|
||||
"name": name,
|
||||
"content_type": file.content_type if isinstance(file.content_type, str) else None,
|
||||
"content_type": (
|
||||
file.content_type
|
||||
if isinstance(file.content_type, str)
|
||||
else None
|
||||
),
|
||||
"size": len(contents),
|
||||
"data": file_metadata,
|
||||
},
|
||||
@@ -577,7 +581,7 @@ class ContentForm(BaseModel):
|
||||
|
||||
|
||||
@router.post("/{id}/data/content/update")
|
||||
async def update_file_data_content_by_id(
|
||||
def update_file_data_content_by_id(
|
||||
request: Request,
|
||||
id: str,
|
||||
form_data: ContentForm,
|
||||
|
||||
Reference in New Issue
Block a user