|
@ -393,6 +393,7 @@ def get_openapi( |
|
|
terms_of_service: Optional[str] = None, |
|
|
terms_of_service: Optional[str] = None, |
|
|
contact: Optional[Dict[str, Union[str, Any]]] = None, |
|
|
contact: Optional[Dict[str, Union[str, Any]]] = None, |
|
|
license_info: Optional[Dict[str, Union[str, Any]]] = None, |
|
|
license_info: Optional[Dict[str, Union[str, Any]]] = None, |
|
|
|
|
|
prefix: Optional[str] = None, |
|
|
) -> Dict[str, Any]: |
|
|
) -> Dict[str, Any]: |
|
|
info: Dict[str, Any] = {"title": title, "version": version} |
|
|
info: Dict[str, Any] = {"title": title, "version": version} |
|
|
if description: |
|
|
if description: |
|
@ -421,6 +422,8 @@ def get_openapi( |
|
|
) |
|
|
) |
|
|
if result: |
|
|
if result: |
|
|
path, security_schemes, path_definitions = result |
|
|
path, security_schemes, path_definitions = result |
|
|
|
|
|
if prefix: |
|
|
|
|
|
route.path_format= prefix + route.path_format |
|
|
if path: |
|
|
if path: |
|
|
paths.setdefault(route.path_format, {}).update(path) |
|
|
paths.setdefault(route.path_format, {}).update(path) |
|
|
if security_schemes: |
|
|
if security_schemes: |
|
|