MCPcopy Create free account
hub / github.com/msgbyte/tailchat / removeUserDMConverse

Function removeUserDMConverse

client/shared/model/user.ts:356–367  ·  view source on GitHub ↗
(
  converseId: string
)

Source from the content-addressed store, hash-verified

354 * 移除会话列表
355 */
356export async function removeUserDMConverse(
357 converseId: string
358): Promise<UserDMList> {
359 const { data } = await request.post<UserDMList>(
360 '/api/user/dmlist/removeConverse',
361 {
362 converseId,
363 }
364 );
365
366 return data;
367}
368
369/**
370 * 修改用户属性

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected