File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
services/web/server/src/simcore_service_webserver/projects Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1- import sqlalchemy
21import sqlalchemy as sa
32from aiohttp import web
43from aiopg .sa .engine import Engine
2221
2322async def get_project_owner (engine : Engine , project_uuid : ProjectID ) -> UserID :
2423 async with engine .acquire () as connection :
25- stmt = sqlalchemy .select (projects .c .prj_owner ).where (
24+ stmt = sa .select (projects .c .prj_owner ).where (
2625 projects .c .uuid == f"{ project_uuid } "
2726 )
2827
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ async def _aggregate_data_to_projects_from_other_sources(
9191 )
9292
9393 for project in updated_projects :
94- project ["access_rights " ] = project_to_access_rights [project ["uuid" ]]
94+ project ["accessRights " ] = project_to_access_rights [project ["uuid" ]]
9595
9696 return updated_projects
9797
You can’t perform that action at this time.
0 commit comments