You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/client/shared/model/inbox.ts

24 lines
445 B
TypeScript

import { request } from '../api/request';
export type {
BasicInboxItem,
MessageInboxItem,
MarkdownInboxItem,
InboxItem,
} from 'tailchat-types';
/**
* 设置收件箱某条记录已读
*/
export async function setInboxAck(inboxItemIds: string[]) {
await request.post('/api/chat/inbox/ack', {
inboxItemIds,
});
}
/**
* 清空收件箱
*/
export async function clearInbox() {
await request.post('/api/chat/inbox/clear');
}