Ejemplo n.º 1
0
 public async Task <ActionResult <ThreadWithMessagesResponseModel> > GetThreadByIdAsync([FromRoute] Guid threadId)
 {
     return(Ok(await _threadManager.GetThreadById(threadId)));
 }