mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
refactor: base server & setting ui
This commit is contained in:
22
src/onebot11/action/DeleteMsg.ts
Normal file
22
src/onebot11/action/DeleteMsg.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import {ActionName} from "./types";
|
||||
import BaseAction from "./BaseAction";
|
||||
import {NTQQApi} from "../../ntqqapi/ntcall";
|
||||
import {getHistoryMsgByShortId} from "../../common/data";
|
||||
|
||||
interface Payload {
|
||||
message_id: number
|
||||
}
|
||||
|
||||
class DeleteMsg extends BaseAction<Payload, void> {
|
||||
actionName = ActionName.DeleteMsg
|
||||
|
||||
protected async _handle(payload:Payload){
|
||||
let msg = getHistoryMsgByShortId(payload.message_id)
|
||||
await NTQQApi.recallMsg({
|
||||
chatType: msg.chatType,
|
||||
peerUid: msg.peerUid
|
||||
}, [msg.msgId])
|
||||
}
|
||||
}
|
||||
|
||||
export default DeleteMsg
|
Reference in New Issue
Block a user