File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
services/catalog/src/simcore_service_catalog Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,6 @@ async def get_service_ports(
307307 service_version = service_version ,
308308 )
309309
310- # Convert internal ServicePort models to ServicePortGet models for the API
311310 return [
312311 ServicePortGet .from_domain_model (
313312 kind = port .kind ,
Original file line number Diff line number Diff line change @@ -474,7 +474,7 @@ async def batch_get_user_services(
474474 if my_access_rights .execute or my_access_rights .write :
475475 history = await repo .get_service_history (
476476 # NOTE: that the service history might be different for each user
477- # since access rights are defined on a k:v basis
477+ # since access rights are defined on a version basis (i.e. one use can have access to v1 but ot to v2)
478478 product_name = product_name ,
479479 user_id = user_id ,
480480 key = service_key ,
@@ -527,7 +527,7 @@ async def list_user_service_release_history(
527527
528528 total_count , history = await repo .get_service_history_page (
529529 # NOTE: that the service history might be different for each user
530- # since access rights are defined on a k:v basis
530+ # since access rights are defined on a version basis (i.e. one use can have access to v1 but ot to v2)
531531 product_name = product_name ,
532532 user_id = user_id ,
533533 key = service_key ,
You can’t perform that action at this time.
0 commit comments