File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
services/web/server/src/simcore_service_webserver/projects Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2929
3030
3131async def _update_project_dict (
32- request : web .Request ,
32+ app : web .Application ,
3333 * ,
3434 user_id : UserID ,
3535 project : ProjectDict ,
@@ -40,11 +40,11 @@ async def _update_project_dict(
4040 user_id = user_id ,
4141 project = project ,
4242 is_template = is_template ,
43- app = request . app ,
43+ app = app ,
4444 )
4545
4646 # permalink
47- await update_or_pop_permalink_in_project (request . app , project )
47+ await update_or_pop_permalink_in_project (app , project )
4848
4949 return project
5050
@@ -150,7 +150,7 @@ async def list_projects( # pylint: disable=too-many-arguments
150150 projects : list [ProjectDict ] = await logged_gather (
151151 * (
152152 _update_project_dict (
153- request ,
153+ request . app ,
154154 user_id = user_id ,
155155 project = prj ,
156156 is_template = prj_type == ProjectTypeDB .TEMPLATE ,
@@ -207,7 +207,7 @@ async def list_projects_full_depth(
207207 projects : list [ProjectDict ] = await logged_gather (
208208 * (
209209 _update_project_dict (
210- request ,
210+ request . app ,
211211 user_id = user_id ,
212212 project = prj ,
213213 is_template = prj_type == ProjectTypeDB .TEMPLATE ,
You can’t perform that action at this time.
0 commit comments