Skip to content

Commit e6000ca

Browse files
committed
expose task endpoints
1 parent 3ff886a commit e6000ca

File tree

1 file changed

+4
-4
lines changed
  • services/api-server/src/simcore_service_api_server/api/routes

1 file changed

+4
-4
lines changed

services/api-server/src/simcore_service_api_server/api/routes/tasks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _get_job_filter(user_id: UserID, product_name: ProductName) -> AsyncJobFilte
5656
FMSG_CHANGELOG_NEW_IN_VERSION.format("0.10-rc1"),
5757
],
5858
),
59-
include_in_schema=False, # TO BE RELEASED in 0.10-rc1
59+
include_in_schema=True,
6060
)
6161
async def list_tasks(
6262
app: Annotated[FastAPI, Depends(get_app)],
@@ -96,7 +96,7 @@ async def list_tasks(
9696
FMSG_CHANGELOG_NEW_IN_VERSION.format("0.10-rc1"),
9797
],
9898
),
99-
include_in_schema=False, # TO BE RELEASED in 0.10-rc1
99+
include_in_schema=True,
100100
)
101101
async def get_task_status(
102102
task_id: AsyncJobId,
@@ -128,7 +128,7 @@ async def get_task_status(
128128
FMSG_CHANGELOG_NEW_IN_VERSION.format("0.10-rc1"),
129129
],
130130
),
131-
include_in_schema=False, # TO BE RELEASED in 0.10-rc1
131+
include_in_schema=True,
132132
)
133133
async def cancel_task(
134134
task_id: AsyncJobId,
@@ -162,7 +162,7 @@ async def cancel_task(
162162
FMSG_CHANGELOG_NEW_IN_VERSION.format("0.10-rc1"),
163163
],
164164
),
165-
include_in_schema=False, # TO BE RELEASED in 0.10-rc1
165+
include_in_schema=True,
166166
)
167167
async def get_task_result(
168168
task_id: AsyncJobId,

0 commit comments

Comments
 (0)