Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions services/api-server/openapi.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check failure on line 1 in services/api-server/openapi.json

View workflow job for this annotation

GitHub Actions / OAS backwards compatibility

Error when checking services/api-server/openapi.json
"openapi": "3.1.0",
"info": {
"title": "osparc.io public API",
Expand Down Expand Up @@ -1256,37 +1256,6 @@
}
}
},
"/v0/programs": {
"get": {
"tags": [
"programs"
],
"summary": "List Programs",
"description": "Lists all available solvers (latest version)\n\nSEE get_solvers_page for paginated version of this function",
"operationId": "list_programs",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Program"
},
"type": "array",
"title": "Response List Programs V0 Programs Get"
}
}
}
}
},
"security": [
{
"HTTPBasic": []
}
]
}
},
"/v0/programs/{program_key}/releases/{version}": {
"get": {
"tags": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
router = APIRouter()


@router.get("", response_model=list[Program])
@router.get("", response_model=list[Program], include_in_schema=False)
async def list_programs(
user_id: Annotated[int, Depends(get_current_user_id)],
catalog_client: Annotated[CatalogApi, Depends(get_api_client(CatalogApi))],
Expand Down
Loading