Merge pull request #158 from iceljc/bugfix/remove-token-user

remove token user id
This commit is contained in:
Haiping 2023-09-27 15:00:46 -05:00 committed by GitHub
commit 30dec8f463
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,6 @@ public class ConversationController : ControllerBase, IApiAdapter
var service = _services.GetRequiredService<IConversationService>();
var sess = new Conversation
{
UserId = _user.Id,
AgentId = agentId
};
sess = await service.NewConversation(sess);