|
@ -454,9 +454,9 @@ class APIRoute(routing.Route): |
|
|
methods = ["GET"] |
|
|
methods = ["GET"] |
|
|
self.methods: Set[str] = {method.upper() for method in methods} |
|
|
self.methods: Set[str] = {method.upper() for method in methods} |
|
|
if isinstance(generate_unique_id_function, DefaultPlaceholder): |
|
|
if isinstance(generate_unique_id_function, DefaultPlaceholder): |
|
|
current_generate_unique_id: Callable[ |
|
|
current_generate_unique_id: Callable[[APIRoute], str] = ( |
|
|
["APIRoute"], str |
|
|
generate_unique_id_function.value |
|
|
] = generate_unique_id_function.value |
|
|
) |
|
|
else: |
|
|
else: |
|
|
current_generate_unique_id = generate_unique_id_function |
|
|
current_generate_unique_id = generate_unique_id_function |
|
|
self.unique_id = self.operation_id or current_generate_unique_id(self) |
|
|
self.unique_id = self.operation_id or current_generate_unique_id(self) |
|
@ -482,9 +482,9 @@ class APIRoute(routing.Route): |
|
|
# By being a new field, no inheritance will be passed as is. A new model |
|
|
# By being a new field, no inheritance will be passed as is. A new model |
|
|
# will always be created. |
|
|
# will always be created. |
|
|
# TODO: remove when deprecating Pydantic v1 |
|
|
# TODO: remove when deprecating Pydantic v1 |
|
|
self.secure_cloned_response_field: Optional[ |
|
|
self.secure_cloned_response_field: Optional[ModelField] = ( |
|
|
ModelField |
|
|
create_cloned_field(self.response_field) |
|
|
] = create_cloned_field(self.response_field) |
|
|
) |
|
|
else: |
|
|
else: |
|
|
self.response_field = None # type: ignore |
|
|
self.response_field = None # type: ignore |
|
|
self.secure_cloned_response_field = None |
|
|
self.secure_cloned_response_field = None |
|
|