From 9a9cc1d52a0689611835efc010364fe355a7127d Mon Sep 17 00:00:00 2001 From: Jicheng Lu <103353@smsassist.com> Date: Wed, 27 Sep 2023 13:25:36 -0500 Subject: [PATCH] remove token user id --- .../BotSharp.OpenAPI/Controllers/ConversationController.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs b/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs index 913642dd5..6123a5d98 100644 --- a/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs +++ b/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs @@ -24,7 +24,6 @@ public async Task NewConversation([FromRoute] string agen var service = _services.GetRequiredService(); var sess = new Conversation { - UserId = _user.Id, AgentId = agentId }; sess = await service.NewConversation(sess);