Skip to content

Commit 40fc460

Browse files
authored
Merge pull request #11 from ml-tooling/bugfix/openapi-307-error
Bugfix: Change 307 response description to fix OpenAPI error
2 parents 34b9434 + d7623ea commit 40fc460

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

backend/openapi-spec.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

backend/src/contaxy/schema/shared.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class ExtensibleOperations(str, Enum):
136136
# }
137137
# TODO: evaluate status codes: 302,303,...
138138
OPEN_URL_REDIRECT: Mapping[Union[int, str], Dict[str, Any]] = {
139-
status.HTTP_307_TEMPORARY_REDIRECT: {"message": "Redirecting to another URL"}
139+
status.HTTP_307_TEMPORARY_REDIRECT: {"description": "Redirecting to another URL"}
140140
}
141141

142142

0 commit comments

Comments
 (0)