File tree Expand file tree Collapse file tree 2 files changed +1
-32
lines changed
src/simcore_service_api_server/api/routes Expand file tree Collapse file tree 2 files changed +1
-32
lines changed Original file line number Diff line number Diff line change 1256
1256
}
1257
1257
}
1258
1258
},
1259
- "/v0/programs" : {
1260
- "get" : {
1261
- "tags" : [
1262
- " programs"
1263
- ],
1264
- "summary" : " List Programs" ,
1265
- "description" : " Lists all available solvers (latest version)\n\n SEE get_solvers_page for paginated version of this function" ,
1266
- "operationId" : " list_programs" ,
1267
- "responses" : {
1268
- "200" : {
1269
- "description" : " Successful Response" ,
1270
- "content" : {
1271
- "application/json" : {
1272
- "schema" : {
1273
- "items" : {
1274
- "$ref" : " #/components/schemas/Program"
1275
- },
1276
- "type" : " array" ,
1277
- "title" : " Response List Programs V0 Programs Get"
1278
- }
1279
- }
1280
- }
1281
- }
1282
- },
1283
- "security" : [
1284
- {
1285
- "HTTPBasic" : []
1286
- }
1287
- ]
1288
- }
1289
- },
1290
1259
"/v0/programs/{program_key}/releases/{version}" : {
1291
1260
"get" : {
1292
1261
"tags" : [
Original file line number Diff line number Diff line change 34
34
router = APIRouter ()
35
35
36
36
37
- @router .get ("" , response_model = list [Program ])
37
+ @router .get ("" , response_model = list [Program ], include_in_schema = False )
38
38
async def list_programs (
39
39
user_id : Annotated [int , Depends (get_current_user_id )],
40
40
catalog_client : Annotated [CatalogApi , Depends (get_api_client (CatalogApi ))],
You can’t perform that action at this time.
0 commit comments