( converseId: string )
| 354 | * 移除会话列表 |
| 355 | */ |
| 356 | export 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 | * 修改用户属性 |
nothing calls this directly
no outgoing calls
no test coverage detected