feat: 更新上传文件字段的schema,增加contentMediaType属性以支持特定文件类型
This commit is contained in:
parent
9b3ffe70f5
commit
583848e803
|
|
@ -409,7 +409,7 @@ def _generate_field_schema(input_field: dict) -> dict:
|
||||||
)
|
)
|
||||||
elif field_type == "UploadFile":
|
elif field_type == "UploadFile":
|
||||||
field_schema.update(
|
field_schema.update(
|
||||||
{"type": "string", "format": "binary", "description": "上传文件"}
|
{"type": "string", "format": "binary", "contentMediaType": "image/*", "description": "上传文件"}
|
||||||
)
|
)
|
||||||
else: # string
|
else: # string
|
||||||
field_schema.update({"type": "string"})
|
field_schema.update({"type": "string"})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue