File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
services/api-server/src/simcore_service_api_server/api/routes Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 5858from ..dependencies .rabbitmq import get_log_check_timeout , get_log_distributor
5959from ..dependencies .services import get_api_client , get_solver_service
6060from ..dependencies .webserver_http import AuthSession , get_webserver_session
61- from ._common import API_SERVER_DEV_FEATURES_ENABLED
6261from ._constants import (
6362 FMSG_CHANGELOG_NEW_IN_VERSION ,
6463 FMSG_CHANGELOG_REMOVED_IN_VERSION_FORMAT ,
126125@router .get (
127126 "/-/releases/-/jobs" ,
128127 response_model = Page [Job ],
129- description = "List of all jobs created for any released solver (paginated)" ,
130- include_in_schema = API_SERVER_DEV_FEATURES_ENABLED ,
128+ description = create_route_description (
129+ base = "List of all jobs created for any released solver (paginated)" ,
130+ changelog = [
131+ FMSG_CHANGELOG_NEW_IN_VERSION .format ("0.8" ),
132+ ],
133+ ),
134+ include_in_schema = False , # TO BE RELEASED in 0.8
131135)
132136async def list_all_solvers_jobs (
133137 user_id : Annotated [PositiveInt , Depends (get_current_user_id )],
You can’t perform that action at this time.
0 commit comments