We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a00ed2d commit b98ab22Copy full SHA for b98ab22
services/web/server/src/simcore_service_webserver/conversations/_conversation_message_service.py
@@ -41,13 +41,7 @@ async def notify_project_conversation_message_created(
41
event_type=SOCKET_IO_PROJECT_CONVERSATION_MESSAGE_CREATED_EVENT,
42
data={
43
"project_id": project_id,
44
- "conversation_id": conversation_message.conversation_id,
45
- "message_id": conversation_message.message_id,
46
- "user_group_id": conversation_message.user_group_id,
47
- "content": conversation_message.content,
48
- "type": conversation_message.type,
49
- "created": conversation_message.created.isoformat(),
50
- "modified": conversation_message.modified.isoformat(),
+ **conversation_message.model_dump(mode="json"),
51
},
52
)
53
0 commit comments