File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
services/web/server/src/simcore_service_webserver/projects/_controller Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,6 @@ async def create_project_conversation(request: web.Request):
8484 body_params = await parse_request_body_as (
8585 _ProjectConversationsCreateBodyParams , request
8686 )
87- _extra_context = (
88- body_params .extra_context if body_params .extra_context is not None else {}
89- )
9087
9188 conversation = await _conversations_service .create_project_conversation (
9289 app = request .app ,
@@ -95,7 +92,6 @@ async def create_project_conversation(request: web.Request):
9592 project_uuid = path_params .project_id ,
9693 name = body_params .name ,
9794 conversation_type = body_params .type ,
98- extra_context = _extra_context ,
9995 )
10096 data = ConversationRestGet .from_domain_model (conversation )
10197
You can’t perform that action at this time.
0 commit comments