File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed
services/web/server/src/simcore_service_webserver/projects Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ async def get_project_metadata(request: web.Request) -> web.Response:
4747 req_ctx = RequestContext .model_validate (request )
4848 path_params = parse_request_path_parameters_as (ProjectPathParams , request )
4949
50- custom_metadata = await _metadata_service .get_project_custom_metadata (
50+ custom_metadata = await _metadata_service .get_project_custom_metadata_for_user (
5151 request .app , user_id = req_ctx .user_id , project_uuid = path_params .project_id
5252 )
5353
Original file line number Diff line number Diff line change @@ -26,15 +26,6 @@ async def get_project_custom_metadata_for_user(
2626 )
2727
2828
29- async def get_project_custom_metadata (
30- app : web .Application , project_uuid : ProjectID
31- ) -> MetadataDict :
32- """Can Raise ProjectNotFoundError"""
33- return await _metadata_repository .get_project_custom_metadata (
34- engine = get_database_engine (app ), project_uuid = project_uuid
35- )
36-
37-
3829async def get_project_custom_metadata_or_empty_dict (
3930 app : web .Application , project_uuid : ProjectID
4031) -> MetadataDict :
You can’t perform that action at this time.
0 commit comments