Skip to content

Commit a5a466d

Browse files
committed
fixed handler path
1 parent b20c258 commit a5a466d

File tree

1 file changed

+1
-1
lines changed
  • services/web/server/src/simcore_service_webserver/storage

1 file changed

+1
-1
lines changed

services/web/server/src/simcore_service_webserver/storage/_handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async def list_storage_locations(request: web.Request) -> web.Response:
132132
return create_data_response(payload, status=resp_status)
133133

134134

135-
@routes.get(_path_prefix, name="list_storage_paths")
135+
@routes.get(f"{_path_prefix}/{{location_id}}/paths", name="list_storage_paths")
136136
@login_required
137137
@permission_required("storage.files.*")
138138
async def list_paths(request: web.Request) -> web.Response:

0 commit comments

Comments
 (0)